Organize appmenu items into more logical groups
Fixes: https://bugs.launchpad.net/midori/+bug/736072
This commit is contained in:
parent
3d4f288ba0
commit
1ccdf3b350
1 changed files with 16 additions and 6 deletions
|
@ -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++)
|
||||
|
|
Loading…
Reference in a new issue