summaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.cpp
diff options
context:
space:
mode:
authorGuilherme Felipe <guilhermefelipecgs@gmail.com>2017-01-25 15:13:07 -0200
committerGuilherme Felipe <guilhermefelipecgs@gmail.com>2017-01-25 15:13:07 -0200
commitd59d8991035db5c33f04266823ad2aa686758a82 (patch)
tree20c5f8f2c6885d892466a14b5ec276b2256b8128 /tools/editor/editor_node.cpp
parent355ce0d0de2787c9dba25d623c1a4cda314d12d5 (diff)
Add run/output category
Diffstat (limited to 'tools/editor/editor_node.cpp')
-rw-r--r--tools/editor/editor_node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index 03f5772dee..e9441695ed 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -1928,11 +1928,11 @@ void EditorNode::_run(bool p_current,const String& p_custom) {
editor_data.save_editor_external_data();
}
- if (bool(EDITOR_DEF("run/always_clear_output_on_play", true))) {
+ if (bool(EDITOR_DEF("run/output/always_clear_output_on_play", true))) {
log->clear();
}
- if (bool(EDITOR_DEF("run/always_open_output_on_play", true))) {
+ if (bool(EDITOR_DEF("run/output/always_open_output_on_play", true))) {
make_bottom_panel_item_visible(log);
}