Skip to content
Snippets Groups Projects
Commit b7d32877 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

Merge branch 'aggraef/purr-data-dropdown-fixes'

parents 49d00bd4 5b3aa3f2
No related branches found
No related tags found
No related merge requests found
......@@ -425,6 +425,7 @@ function create_menu(gui, type) {
modifiers: shortcuts.menu.comment.modifiers,
tooltip: l("menu.comment_tt")
}));
put_menu.append(new gui.MenuItem({ type: "separator" }));
put_menu.append(m.put.dropdown = new gui.MenuItem({
label: l("menu.dropdown"),
key: shortcuts.menu.dropdown.key,
......
......@@ -34,6 +34,8 @@ exports.menu = {
"zoomin": { key: "=", modifiers: cmd_or_ctrl },
"zoomout": { key: "-", modifiers: cmd_or_ctrl },
// uncomment this for AZERTY keyboards:
//"zoomout": { key: "6", modifiers: cmd_or_ctrl },
"zoomreset": { key: "0", modifiers: cmd_or_ctrl },
"zoomoptimal": { key: "9", modifiers: cmd_or_ctrl },
"zoomhoriz": { key: "9", modifiers: cmd_or_ctrl + "+alt" },
......@@ -46,7 +48,7 @@ exports.menu = {
"number": { key: "3", modifiers: cmd_or_ctrl },
"symbol": { key: "4", modifiers: cmd_or_ctrl },
"comment": { key: "5", modifiers: cmd_or_ctrl },
"dropdown": { key: "6", modifiers: cmd_or_ctrl },
"dropdown": { key: "m", modifiers: cmd_or_ctrl + "+shift" },
"bang": { key: "b", modifiers: cmd_or_ctrl + "+shift" },
"toggle": { key: "t", modifiers: cmd_or_ctrl + "+shift" },
"number2": { key: "n", modifiers: cmd_or_ctrl + "+shift" },
......
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