diff options
| author | Juan Linietsky | 2016-02-21 11:52:11 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-02-21 11:52:11 -0300 |
| commit | 499308e48265bea0cf92570c3e3b36dadf7c71d2 (patch) | |
| tree | 2c600b6e6a351431386af625a1c6501e586e66ba /tools/editor/plugins/script_editor_plugin.cpp | |
| parent | b91b89cf60c31ec15c7f4f2ee51cc51e0e11c4ee (diff) | |
| download | godot-499308e48265bea0cf92570c3e3b36dadf7c71d2.tar.gz godot-499308e48265bea0cf92570c3e3b36dadf7c71d2.tar.zst godot-499308e48265bea0cf92570c3e3b36dadf7c71d2.zip | |
-fixed a crash when closing scene with animationplayer open
-removed item checked print, closes #3564
Diffstat (limited to '')
| -rw-r--r-- | tools/editor/plugins/script_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index 9c7723085..8d0527cff 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -609,7 +609,7 @@ void ScriptEditor::_breaked(bool p_breaked,bool p_can_debug) { void ScriptEditor::_show_debugger(bool p_show) { - debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW), p_show); +// debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW), p_show); } void ScriptEditor::_script_created(Ref<Script> p_script) { |
