forked from AuroraMiddleware/gtk
Merge from 2.4:
Thu May 6 23:52:13 2004 Matthias Clasen <maclas@gmx.de> Merge from 2.4: * gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): Also popup the submenu for items in torn off menus. (#122051)
This commit is contained in:
parent
ebfab36967
commit
0a41106ac2
@ -1,3 +1,10 @@
|
||||
Thu May 6 23:52:13 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Merge from 2.4:
|
||||
|
||||
* gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): Also
|
||||
popup the submenu for items in torn off menus. (#122051)
|
||||
|
||||
2004-05-06 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* gtk/gtkexpander.c (gtk_expander_size_allocate): in RTL mode,
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu May 6 23:52:13 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Merge from 2.4:
|
||||
|
||||
* gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): Also
|
||||
popup the submenu for items in torn off menus. (#122051)
|
||||
|
||||
2004-05-06 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* gtk/gtkexpander.c (gtk_expander_size_allocate): in RTL mode,
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu May 6 23:52:13 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Merge from 2.4:
|
||||
|
||||
* gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): Also
|
||||
popup the submenu for items in torn off menus. (#122051)
|
||||
|
||||
2004-05-06 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* gtk/gtkexpander.c (gtk_expander_size_allocate): in RTL mode,
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu May 6 23:52:13 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Merge from 2.4:
|
||||
|
||||
* gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): Also
|
||||
popup the submenu for items in torn off menus. (#122051)
|
||||
|
||||
2004-05-06 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* gtk/gtkexpander.c (gtk_expander_size_allocate): in RTL mode,
|
||||
|
@ -962,7 +962,8 @@ gtk_menu_item_select_timeout (gpointer data)
|
||||
|
||||
parent = GTK_WIDGET (menu_item)->parent;
|
||||
|
||||
if (parent && GTK_IS_MENU_SHELL (parent) && GTK_MENU_SHELL (parent)->active)
|
||||
if ((GTK_IS_MENU_SHELL (parent) && GTK_MENU_SHELL (parent)->active) ||
|
||||
(GTK_IS_MENU (parent) && GTK_MENU (parent)->torn_off))
|
||||
{
|
||||
gtk_menu_item_popup_submenu (data);
|
||||
if (menu_item->timer_from_keypress && menu_item->submenu)
|
||||
|
Loading…
Reference in New Issue
Block a user