aboutsummaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRémi Verschelde2017-10-28 17:52:02 +0200
committerGitHub2017-10-28 17:52:02 +0200
commit5f24a0b2509659d43dca772704ed49714929f913 (patch)
tree01c8468532545baccbccd29f0d11434eee00d1fb /editor
parentfeb30bf329d5de8a6b35acaae0cd122f53e40826 (diff)
parent70566c0935838825da462503805d93373249d964 (diff)
downloadgodot-5f24a0b2509659d43dca772704ed49714929f913.tar.gz
godot-5f24a0b2509659d43dca772704ed49714929f913.tar.zst
godot-5f24a0b2509659d43dca772704ed49714929f913.zip
Merge pull request #12389 from Chaosus/continuehotkey
Added hotkey for Continue action in Script editor [ci skip]
Diffstat (limited to 'editor')
-rw-r--r--editor/plugins/script_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index ffda34653..a1183307f 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -2360,7 +2360,7 @@ ScriptEditor::ScriptEditor(EditorNode *p_editor) {
debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_into", TTR("Step Into"), KEY_F11), DEBUG_STEP);
debug_menu->get_popup()->add_separator();
debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/break", TTR("Break")), DEBUG_BREAK);
- debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/continue", TTR("Continue")), DEBUG_CONTINUE);
+ debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/continue", TTR("Continue"), KEY_F12), DEBUG_CONTINUE);
debug_menu->get_popup()->add_separator();
//debug_menu->get_popup()->add_check_item("Show Debugger",DEBUG_SHOW);
debug_menu->get_popup()->add_check_shortcut(ED_SHORTCUT("debugger/keep_debugger_open", TTR("Keep Debugger Open")), DEBUG_SHOW_KEEP_OPEN);