summaryrefslogtreecommitdiffstats
path: root/tools/editor/script_editor_debugger.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-09-06 07:51:50 +0200
committerGitHub <noreply@github.com>2016-09-06 07:51:50 +0200
commita66a23fafedd975f28f865deaba0b4ba783f59ba (patch)
tree1a315a5e2933d18d5899a7aefeb03a71c6faed83 /tools/editor/script_editor_debugger.cpp
parent10de1799fb68099ac443af68344355002f3fe9e6 (diff)
parent8514eaf34b004ffb7d2c24e2c680a2c9df2e8146 (diff)
downloadredot-engine-a66a23fafedd975f28f865deaba0b4ba783f59ba.tar.gz
Merge pull request #6410 from supaiku-o/issue-6029
Always show output panel when debugging
Diffstat (limited to 'tools/editor/script_editor_debugger.cpp')
-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();