mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Also update smart separators if the visibility of a menuitem with a
2004-10-08 Matthias Clasen <mclasen@redhat.com> * gtk/gtkuimanager.c (update_node): Also update smart separators if the visibility of a menuitem with a submenu changes. (#153791, Christian Persch)
This commit is contained in:
parent
daeea8b871
commit
f64d8567ed
@ -1,3 +1,9 @@
|
||||
2004-10-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkuimanager.c (update_node): Also update smart separators
|
||||
if the visibility of a menuitem with a submenu changes. (#153791,
|
||||
Christian Persch)
|
||||
|
||||
2004-10-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkentry.h:
|
||||
|
@ -1,3 +1,9 @@
|
||||
2004-10-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkuimanager.c (update_node): Also update smart separators
|
||||
if the visibility of a menuitem with a submenu changes. (#153791,
|
||||
Christian Persch)
|
||||
|
||||
2004-10-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkentry.h:
|
||||
|
@ -1,3 +1,9 @@
|
||||
2004-10-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkuimanager.c (update_node): Also update smart separators
|
||||
if the visibility of a menuitem with a submenu changes. (#153791,
|
||||
Christian Persch)
|
||||
|
||||
2004-10-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkentry.h:
|
||||
|
@ -1,3 +1,9 @@
|
||||
2004-10-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkuimanager.c (update_node): Also update smart separators
|
||||
if the visibility of a menuitem with a submenu changes. (#153791,
|
||||
Christian Persch)
|
||||
|
||||
2004-10-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkentry.h:
|
||||
|
@ -2196,6 +2196,8 @@ update_node (GtkUIManager *self,
|
||||
gtk_menu_shell_append (GTK_MENU_SHELL (menu), filler);
|
||||
gtk_menu_item_set_submenu (GTK_MENU_ITEM (info->proxy), menu);
|
||||
gtk_menu_shell_insert (GTK_MENU_SHELL (menushell), info->proxy, pos);
|
||||
g_signal_connect (info->proxy, "notify::visible",
|
||||
G_CALLBACK (update_smart_separators), 0);
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -2517,7 +2519,7 @@ update_node (GtkUIManager *self,
|
||||
{
|
||||
if (info->type == NODE_TYPE_MENU)
|
||||
update_smart_separators (gtk_menu_item_get_submenu (GTK_MENU_ITEM (info->proxy)));
|
||||
else if (info->type == NODE_TYPE_TOOLBAR)
|
||||
else if (info->type == NODE_TYPE_TOOLBAR || info->type == NODE_TYPE_POPUP)
|
||||
update_smart_separators (info->proxy);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user