From 1ccdf3b35002316f1a5fb10dfb366b10801105e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20For=C3=A9?= Date: Thu, 7 Apr 2011 21:17:18 +0200 Subject: [PATCH] Organize appmenu items into more logical groups Fixes: https://bugs.launchpad.net/midori/+bug/736072 --- midori/midori-browser.c | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/midori/midori-browser.c b/midori/midori-browser.c index 2a7f9422..ee205bd7 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -2951,31 +2951,41 @@ _action_compact_menu_populate_popup (GtkAction* action, static const GtkActionEntry actions[] = { { "TabNew" }, { "WindowNew" }, - { "PrivateBrowsing" }, + { NULL }, { "Open" }, { "Find" }, #if !HAVE_HILDON { "Print" }, - { NULL }, - { "Panel" }, - { "-" }, - { "ClearPrivateData" }, #if WEBKIT_CHECK_VERSION (1, 1, 17) { "InspectPage" }, #endif - { "Fullscreen" }, + #endif + { NULL }, + { "PrivateBrowsing" }, + #if !HAVE_HILDON + { "ClearPrivateData" }, + { NULL }, { "BookmarksImport"}, { "BookmarksExport"}, + { NULL }, + { "Fullscreen" }, + { "Panel" }, + { "-" }, #endif + { NULL }, + #if !HAVE_HILDON { "HelpFAQ" }, + #endif { "About" }, { "Preferences" }, #if HAVE_HILDON + { NULL }, { "auto-load-images" }, { "enable-scripts" }, { "enable-plugins" }, #endif }; + guint i; for (i = 0; i < G_N_ELEMENTS (actions); i++)