From ac7ce0f7923f37c89f8f30641a747c9124377685 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Thu, 24 Feb 2011 21:23:23 +0100 Subject: [PATCH] Move 'Menubar' menuitem down and make it 'Navigationbar' The menu item that appears in the context menu if all toolbars are hidden is easy to miss, so moving it to the bottom makes it more visible. It should also show the Navigationbar. --- midori/midori-view.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/midori/midori-view.c b/midori/midori-view.c index 7b5f0815..e928f4a1 100644 --- a/midori/midori-view.c +++ b/midori/midori-view.c @@ -2642,13 +2642,6 @@ midori_view_populate_popup (MidoriView* view, } */ #endif - if (!g_object_get_data (G_OBJECT (browser), "midori-toolbars-visible")) - { - menuitem = sokoke_action_create_popup_menu_item ( - gtk_action_group_get_action (actions, "Menubar")); - gtk_menu_shell_append (menu_shell, menuitem); - } - #if !HAVE_HILDON menuitem = sokoke_action_create_popup_menu_item ( gtk_action_group_get_action (actions, "ZoomIn")); @@ -2725,6 +2718,13 @@ midori_view_populate_popup (MidoriView* view, menuitem = sokoke_action_create_popup_menu_item ( gtk_action_group_get_action (actions, "SourceView")); gtk_menu_shell_append (menu_shell, menuitem); + + if (!g_object_get_data (G_OBJECT (browser), "midori-toolbars-visible")) + { + menuitem = sokoke_action_create_popup_menu_item ( + gtk_action_group_get_action (actions, "Navigationbar")); + gtk_menu_shell_append (menu_shell, menuitem); + } } #if WEBKIT_CHECK_VERSION (1, 1, 17) -- 2.39.5