summaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.cpp
diff options
context:
space:
mode:
authormarynate <mary.w.nate@gmail.com>2014-05-13 10:15:28 +0800
committermarynate <mary.w.nate@gmail.com>2014-05-13 10:30:10 +0800
commit30cfc0bef4adf13b618647f6642266dd9a7eb502 (patch)
treeeed0b707fdf39796b80ee3883cc4e45c4f16df39 /tools/editor/editor_node.cpp
parent45a509282e912d85c46b40974a2deb926be5be42 (diff)
Add hotkey Shift+CMD+Q in editor for quit to project manager, resolves
issue #406
Diffstat (limited to 'tools/editor/editor_node.cpp')
-rw-r--r--tools/editor/editor_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index fc644e76c5..948d4cd9ff 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -3463,7 +3463,7 @@ EditorNode::EditorNode() {
p->add_separator();
p->add_item("Project Settings",RUN_SETTINGS);
p->add_separator();
- p->add_item("Quit to Project List",RUN_PROJECT_MANAGER);
+ p->add_item("Quit to Project List",RUN_PROJECT_MANAGER,KEY_MASK_SHIFT+KEY_MASK_CMD+KEY_Q);
p->add_item("Quit",FILE_QUIT,KEY_MASK_CMD+KEY_Q);
recent_scenes = memnew( PopupMenu );