diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-09-06 07:51:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-06 07:51:50 +0200 |
commit | a66a23fafedd975f28f865deaba0b4ba783f59ba (patch) | |
tree | 1a315a5e2933d18d5899a7aefeb03a71c6faed83 /tools/editor/script_editor_debugger.cpp | |
parent | 10de1799fb68099ac443af68344355002f3fe9e6 (diff) | |
parent | 8514eaf34b004ffb7d2c24e2c680a2c9df2e8146 (diff) | |
download | redot-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.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(); |