diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-20 19:09:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 19:09:13 +0200 |
commit | af976e4834abcf3c5e252bfeab1583568d32272e (patch) | |
tree | a12c66e023a24b1ba6b9c3963b40fc81507de63e /main | |
parent | 160d5908c6b9df63d9812fb22c77b2c12d677c22 (diff) | |
parent | c9c5eec6f9cf5c756608dd2773a72992fa0766fb (diff) |
Merge pull request #50680 from Calinou/project-default-single-window-mode
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index e78dec9bb3..2a9446d4ed 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2140,7 +2140,7 @@ bool Main::start() { } #endif - bool embed_subwindows = GLOBAL_DEF("display/window/subwindows/embed_subwindows", false); + bool embed_subwindows = GLOBAL_DEF("display/window/subwindows/embed_subwindows", true); if (OS::get_singleton()->is_single_window() || (!project_manager && !editor && embed_subwindows)) { sml->get_root()->set_embed_subwindows_hint(true); |