diff options
author | Eric M <itsjusteza@gmail.com> | 2023-01-22 20:31:31 +1000 |
---|---|---|
committer | Eric M <itsjusteza@gmail.com> | 2023-01-22 20:31:31 +1000 |
commit | 6fa4f43deec7e6255306574e8a622b9c5a0f172c (patch) | |
tree | 7404b1157e14f298c25b7b2d0a3ff3fd9e7aace6 | |
parent | 4db3716d8d9bbc95c031818b190002602558b0f2 (diff) |
Fix 'run specific scene' shortcut on Windows/non-Mac
-rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index b0278030f9..3132581af5 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -6916,7 +6916,7 @@ EditorNode::EditorNode() { _reset_play_buttons(); - ED_SHORTCUT_AND_COMMAND("editor/run_specific_scene", TTR("Run Specific Scene"), KeyModifierMask::META | KeyModifierMask::SHIFT | Key::F5); + ED_SHORTCUT_AND_COMMAND("editor/run_specific_scene", TTR("Run Specific Scene"), KeyModifierMask::CTRL | KeyModifierMask::SHIFT | Key::F5); ED_SHORTCUT_OVERRIDE("editor/run_specific_scene", "macos", KeyModifierMask::META | KeyModifierMask::SHIFT | Key::R); play_custom_scene_button->set_shortcut(ED_GET_SHORTCUT("editor/run_specific_scene")); |