aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-01-02 15:54:26 +0100
committerGitHub2017-01-02 15:54:26 +0100
commitac04a932d63ebf2072166b57fd80ab73dd3d988a (patch)
treeef9d8ef3039cc4e1a3429fa9247161ef60afdb13 /tools/editor/editor_node.cpp
parentb53090403808a6fd097374f24088fbb638e96129 (diff)
parentfaf6f865ddefa129945491796edcc23133f7e5e1 (diff)
downloadgodot-ac04a932d63ebf2072166b57fd80ab73dd3d988a.tar.gz
godot-ac04a932d63ebf2072166b57fd80ab73dd3d988a.tar.zst
godot-ac04a932d63ebf2072166b57fd80ab73dd3d988a.zip
Merge pull request #7364 from guilhermefelipecgs/fix_bottom_panel_visibility_on_play
Fix bottom panel visibility on play
Diffstat (limited to 'tools/editor/editor_node.cpp')
-rw-r--r--tools/editor/editor_node.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index 5d04e4f5d..98aa5acd4 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -1922,6 +1922,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<String> breakpoints;
editor_data.get_editor_breakpoints(&breakpoints);