diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-08-11 12:58:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-11 12:58:12 +0200 |
commit | 0e751ea7c3b4997cb15e3ae00dfe097f690a1f3a (patch) | |
tree | bca439fa7b626cc2aaf899174052b4f5f59bdbb1 /editor/editor_node.cpp | |
parent | b3707aeff2243871b853ea0e08f3a485093d687b (diff) | |
parent | 4f7a49db53c6aaabeca70fe8901144af708fb6b2 (diff) |
Merge pull request #41164 from bruvzg/win_attach_console
[Windows] Attach to parent console instead of creating new one.
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index ce131e6a05..dabee67033 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -2620,7 +2620,6 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) { case SETTINGS_TOGGLE_CONSOLE: { bool was_visible = DisplayServer::get_singleton()->is_console_visible(); DisplayServer::get_singleton()->console_set_visible(!was_visible); - EditorSettings::get_singleton()->set_setting("interface/editor/hide_console_window", was_visible); } break; case EDITOR_SCREENSHOT: { screenshot_timer->start(); |