From eea6c436763b6df2c2e589fac00712ed39aec832 Mon Sep 17 00:00:00 2001 From: Guilherme Felipe Date: Sat, 24 Dec 2016 20:39:16 -0200 Subject: [PATCH] Add new option to always open output on play (cherry picked from commit faf6f865ddefa129945491796edcc23133f7e5e1) --- tools/editor/editor_node.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 03b20dc8f5..677956a96c 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -1926,6 +1926,9 @@ void EditorNode::_run(bool p_current,const String& p_custom) { log->clear(); } + if (bool(EDITOR_DEF("run/always_open_output_on_play", true))) { + make_bottom_panel_item_visible(log); + } List breakpoints; editor_data.get_editor_breakpoints(&breakpoints);