From d59d8991035db5c33f04266823ad2aa686758a82 Mon Sep 17 00:00:00 2001 From: Guilherme Felipe Date: Wed, 25 Jan 2017 15:13:07 -0200 Subject: Add run/output category --- tools/editor/editor_node.cpp | 4 ++-- tools/editor/editor_settings.cpp | 2 ++ 2 files changed, 4 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); } diff --git a/tools/editor/editor_settings.cpp b/tools/editor/editor_settings.cpp index 27aeaeb5b6..822497fcab 100644 --- a/tools/editor/editor_settings.cpp +++ b/tools/editor/editor_settings.cpp @@ -653,6 +653,8 @@ void EditorSettings::_load_defaults(Ref p_extra_config) { set("run/auto_save/save_before_running",true); + set("run/output/always_clear_output_on_play",true); + set("run/output/always_open_output_on_play",true); set("filesystem/resources/save_compressed_resources",true); set("filesystem/resources/auto_reload_modified_images",true); -- cgit v1.2.3