diff options
author | keptsecret <sorchon@gmail.com> | 2022-02-18 13:31:54 -0500 |
---|---|---|
committer | keptsecret <sorchon@gmail.com> | 2022-02-18 13:31:54 -0500 |
commit | 128e98c124d2044d8c78b07afc4be0586ba28f30 (patch) | |
tree | fef863d4494194908256d28c837cc20f4657710d | |
parent | cb905fa95708e64376cc334de468f03d83827eb3 (diff) |
fixed wrong ifdef enclosed block
-rw-r--r-- | scene/main/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/window.cpp b/scene/main/window.cpp index 675be9db29..b2078bbd77 100644 --- a/scene/main/window.cpp +++ b/scene/main/window.cpp @@ -436,10 +436,10 @@ void Window::set_visible(bool p_visible) { if (exclusive && visible) { #ifdef TOOLS_ENABLED if (!(Engine::get_singleton()->is_editor_hint() && get_tree()->get_edited_scene_root() && get_tree()->get_edited_scene_root()->is_ancestor_of(this))) { -#endif ERR_FAIL_COND_MSG(transient_parent->exclusive_child && transient_parent->exclusive_child != this, "Transient parent has another exclusive child."); transient_parent->exclusive_child = this; } +#endif } else { if (transient_parent->exclusive_child == this) { transient_parent->exclusive_child = nullptr; |