diff options
author | jack <hello@jackmakesthings.com> | 2015-04-25 22:45:49 -0400 |
---|---|---|
committer | jack <hello@jackmakesthings.com> | 2015-04-25 22:45:49 -0400 |
commit | d22a13e2e8979769fa8d50c98c8eecc8644fe9e4 (patch) | |
tree | f6babf4a7c55375bcfc991d00ee0b7558a94a0c5 /tools | |
parent | ffbe3eeff9782e19a33fea7eec60846f10729a9f (diff) |
issue #1715 - menu separator
There was a request for a separator between Open Scene and Save Scene to avoid accidental mis-clicks. So here's that!
Diffstat (limited to 'tools')
-rw-r--r-- | tools/editor/editor_node.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index f50db40525..6d992960f3 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -3504,6 +3504,7 @@ EditorNode::EditorNode() { p=file_menu->get_popup(); p->add_item("New Scene",FILE_NEW_SCENE); p->add_item("Open Scene..",FILE_OPEN_SCENE,KEY_MASK_CMD+KEY_O); + p->add_separator(); p->add_item("Save Scene",FILE_SAVE_SCENE,KEY_MASK_CMD+KEY_S); p->add_item("Save Scene As..",FILE_SAVE_AS_SCENE,KEY_MASK_SHIFT+KEY_MASK_CMD+KEY_S); p->add_separator(); |