mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-07 01:00:28 +00:00
GtkActionHelper: two small fixups in _set_target_value()
First, ensure we always consume floating values, as documented. Second (and more serious), don't try to query the action if the action name is not set yet. This will cause crashes...
This commit is contained in:
parent
c5f1dede79
commit
81e76746ff
@ -523,7 +523,10 @@ gtk_action_helper_set_action_target_value (GtkActionHelper *helper,
|
||||
return;
|
||||
|
||||
if (target_value && helper->target && g_variant_equal (target_value, helper->target))
|
||||
return;
|
||||
{
|
||||
g_variant_unref (g_variant_ref_sink (target_value));
|
||||
return;
|
||||
}
|
||||
|
||||
if (helper->target)
|
||||
{
|
||||
@ -534,6 +537,10 @@ gtk_action_helper_set_action_target_value (GtkActionHelper *helper,
|
||||
if (target_value)
|
||||
helper->target = g_variant_ref_sink (target_value);
|
||||
|
||||
/* The action_name has not yet been set. Don't do anything yet. */
|
||||
if (helper->action_name == NULL)
|
||||
return;
|
||||
|
||||
was_enabled = helper->enabled;
|
||||
was_active = helper->active;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user