mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 14:30:15 +00:00
GtkMenuTrackerItem: small logic tweak
Strictly speaking, can_activate should always be set back to FALSE when the action disappears from the muxer (since we can't activate it anymore) but we forgot to do that. This 'bug' could never cause a problem because 'can_activate' is never directly queried for anything at all and the item would get marked insensitive anyway. As soon as the action was re-added, can_activate would be recalculated based on the new action before anything else could happen. All the same, this should be cleared here. https://bugzilla.gnome.org/show_bug.cgi?id=688421
This commit is contained in:
parent
fb14a78271
commit
8256b88eb1
@ -357,6 +357,8 @@ gtk_menu_tracker_item_action_removed (GtkActionObserver *observer,
|
||||
if (!self->can_activate)
|
||||
return;
|
||||
|
||||
self->can_activate = FALSE;
|
||||
|
||||
g_object_freeze_notify (G_OBJECT (self));
|
||||
|
||||
if (self->sensitive)
|
||||
|
Loading…
Reference in New Issue
Block a user