Fix uneeded separator
This commit is contained in:
parent
135027a2f6
commit
5ea403c0ce
1 changed files with 0 additions and 1 deletions
|
@ -2349,7 +2349,6 @@ ScriptEditor::ScriptEditor(EditorNode *p_editor) {
|
||||||
debug_menu = memnew(MenuButton);
|
debug_menu = memnew(MenuButton);
|
||||||
menu_hb->add_child(debug_menu);
|
menu_hb->add_child(debug_menu);
|
||||||
debug_menu->set_text(TTR("Debug"));
|
debug_menu->set_text(TTR("Debug"));
|
||||||
debug_menu->get_popup()->add_separator();
|
|
||||||
debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_over", TTR("Step Over"), KEY_F10), DEBUG_NEXT);
|
debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_over", TTR("Step Over"), KEY_F10), DEBUG_NEXT);
|
||||||
debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_into", TTR("Step Into"), KEY_F11), DEBUG_STEP);
|
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_separator();
|
||||||
|
|
Loading…
Reference in a new issue