From 8514eaf34b004ffb7d2c24e2c680a2c9df2e8146 Mon Sep 17 00:00:00 2001 From: supaiku Date: Tue, 6 Sep 2016 01:44:33 +0200 Subject: Always show output panel when debugging --- tools/editor/script_editor_debugger.cpp | 3 +++ 1 file changed, 3 insertions(+) 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(); -- cgit v1.2.3