GNOME Bugzilla – Bug 760527
Use GtkPopover for "view-menu" and "action-menu"
Last modified: 2016-01-31 11:28:10 UTC
Since we are already using GtkPopover for the "zoom-menu", why not use GtkPopover for "view-menu" and "action-menu" too? GtkMenuButton already goes for a popover by default. Currently, we are using "gtk_menu_button_set_use_popover (GTK_MENU_BUTTON (button), FALSE);" while constructing these menus. Is there a reason for that?
Created attachment 318870 [details] [review] shell: use popover for view-menu and action-menu
Review of attachment 318870 [details] [review]: ::: shell/ev-toolbar.c @@ -136,2 @@ button = gtk_menu_button_new (); - gtk_menu_button_set_use_popover (GTK_MENU_BUTTON (button), FALSE); Should not we also call gtk_popover_set_position()? See Bug 756976
Created attachment 319008 [details] [review] shell: use popover for view-menu and action-menu
Comment on attachment 319008 [details] [review] shell: use popover for view-menu and action-menu Ok, I don't see why not :-) Thanks.
Attachment 319008 [details] pushed as cb3d4b2 - shell: use popover for view-menu and action-menu