diff options
Drop menubar and create an actions menu button in the toolbar
Similar to Chrome's wrench menu, but used only (in the future) for
page-related actions. For now we have mechanically moved most stuff
there, now we need to start removing them one by one when appropriate.
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-ui.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bookmarks/ephy-bookmarks-ui.c b/src/bookmarks/ephy-bookmarks-ui.c index 66d675df7..994b32213 100644 --- a/src/bookmarks/ephy-bookmarks-ui.c +++ b/src/bookmarks/ephy-bookmarks-ui.c @@ -93,9 +93,9 @@ activate_bookmarks_menu (GtkAction *action, EphyWindow *window) if (!bookmarks_menu_string->len) { g_string_append (bookmarks_menu_string, - "<ui><menubar><menu name=\"BookmarksMenu\" action=\"Bookmarks\">"); + "<ui><popup name=\"PagePopup\" action=\"PopupAction\"><menu name=\"BookmarksMenu\" action=\"Bookmarks\">"); ephy_bookmarks_menu_build (bookmarks_menu_string, 0); - g_string_append (bookmarks_menu_string, "</menu></menubar></ui>"); + g_string_append (bookmarks_menu_string, "</menu></popup></ui>"); } data->bookmarks_menu = gtk_ui_manager_add_ui_from_string |