summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupaiku <supaiku@protonmail.ch>2016-09-06 01:44:33 +0200
committersupaiku <supaiku@protonmail.ch>2016-09-06 01:46:50 +0200
commit8514eaf34b004ffb7d2c24e2c680a2c9df2e8146 (patch)
treeb48f7840034ae4871b367a39f45b374f5df317e4
parent6f7b2d277fc068264b72b0a39d464da03807c628 (diff)
Always show output panel when debugging
-rw-r--r--tools/editor/script_editor_debugger.cpp3
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();