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 /main | |
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 'main')
-rw-r--r-- | main/main.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/main/main.cpp b/main/main.cpp index c5500a1f66..75f204aa7e 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2203,13 +2203,6 @@ bool Main::start() { } if (project_manager || editor) { - if (DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_CONSOLE_WINDOW)) { - // Hide console window if requested (Windows-only). - bool hide_console = EditorSettings::get_singleton()->get_setting( - "interface/editor/hide_console_window"); - DisplayServer::get_singleton()->console_set_visible(!hide_console); - } - // Load SSL Certificates from Editor Settings (or builtin) Crypto::load_default_certificates(EditorSettings::get_singleton()->get_setting( "network/ssl/editor_ssl_certificates") |