Skip to content
Snippets Groups Projects
Commit bd50662f authored by Albert Gräf's avatar Albert Gräf
Browse files

Move the Window menu to its customary position next to the Help menu.

parent 3f5f60de
No related branches found
No related tags found
1 merge request!24Add an "Optimal Zoom" option to the canvas view menu.
...@@ -565,11 +565,11 @@ function create_menu(gui, type) { ...@@ -565,11 +565,11 @@ function create_menu(gui, type) {
label: l("menu.put"), label: l("menu.put"),
submenu: put_menu submenu: put_menu
}), 4); }), 4);
// "Window" menu created from mac builtin above
window_menu.insert(new gui.MenuItem({ window_menu.insert(new gui.MenuItem({
label: l("menu.media"), label: l("menu.media"),
submenu: media_menu submenu: media_menu
}), 5); }), 5);
// "Window" menu created from mac builtin above
window_menu.append(new gui.MenuItem({ window_menu.append(new gui.MenuItem({
label: l("menu.help"), label: l("menu.help"),
submenu: help_menu submenu: help_menu
...@@ -593,14 +593,14 @@ function create_menu(gui, type) { ...@@ -593,14 +593,14 @@ function create_menu(gui, type) {
submenu: put_menu submenu: put_menu
})); }));
} }
window_menu.append(new gui.MenuItem({
label: l("menu.windows"),
submenu: winman_menu
}));
window_menu.append(new gui.MenuItem({ window_menu.append(new gui.MenuItem({
label: l("menu.media"), label: l("menu.media"),
submenu: media_menu submenu: media_menu
})); }));
window_menu.append(new gui.MenuItem({
label: l("menu.windows"),
submenu: winman_menu
}));
window_menu.append(new gui.MenuItem({ window_menu.append(new gui.MenuItem({
label: l("menu.help"), label: l("menu.help"),
submenu: help_menu submenu: help_menu
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment