From 58daf901f97f088d1ac704164bb293eec80aef53 Mon Sep 17 00:00:00 2001 From: Henrique Lacreta Alves Date: Sat, 22 Oct 2016 08:54:38 -0200 Subject: [PATCH] Prevent unwanted script editor input on game crash Fixes #6530. (cherry picked from commit 853d1ce9f30b93933e5e2f5dad78f7bf75742b15) --- tools/editor/plugins/script_editor_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index c7892bbefa1..21f469863d7 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -2310,6 +2310,7 @@ void ScriptEditor::apply_scripts() const { void ScriptEditor::_editor_play() { debugger->start(); + debug_menu->get_popup()->grab_focus(); debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true ); debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), true ); debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), false );