diff options
author | supaiku <supaiku@protonmail.ch> | 2016-09-06 01:44:33 +0200 |
---|---|---|
committer | supaiku <supaiku@protonmail.ch> | 2016-09-06 01:46:50 +0200 |
commit | 8514eaf34b004ffb7d2c24e2c680a2c9df2e8146 (patch) | |
tree | b48f7840034ae4871b367a39f45b374f5df317e4 /tools | |
parent | 6f7b2d277fc068264b72b0a39d464da03807c628 (diff) |
Always show output panel when debugging
Diffstat (limited to 'tools')
-rw-r--r-- | tools/editor/script_editor_debugger.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/editor/script_editor_debugger.cpp b/tools/editor/script_editor_debugger.cpp index da42f54095..7fba73ca08 100644 --- a/tools/editor/script_editor_debugger.cpp +++ b/tools/editor/script_editor_debugger.cpp @@ -1087,6 +1087,9 @@ void ScriptEditorDebugger::start() { stop(); + if (!EditorNode::get_log()->is_visible()) { + EditorNode::get_singleton()->make_bottom_panel_item_visible(EditorNode::get_log()); + } uint16_t port = GLOBAL_DEF("debug/remote_port",6007); perf_history.clear(); |