]> spindle.queued.net Git - midori/commitdiff
Move 'Menubar' menuitem down and make it 'Navigationbar'
authorChristian Dywan <christian@twotoasts.de>
Thu, 24 Feb 2011 20:23:23 +0000 (21:23 +0100)
committerChristian Dywan <christian@twotoasts.de>
Thu, 24 Feb 2011 20:26:49 +0000 (21:26 +0100)
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

index 7b5f0815f9808a1a3e1233d7a54f623768ccd366..e928f4a1221f1afcb5634b1f4b38e2b888ce0701 100644 (file)
@@ -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)