Hide visible popups by default if visible when entering tree, unless on editor. Fixes #24737

This commit is contained in:
Juan Linietsky 2019-01-14 13:16:19 -03:00
parent 81180b266a
commit ed9b230744

View file

@ -52,9 +52,13 @@ void Popup::_notification(int p_what) {
//small helper to make editing of these easier in editor
#ifdef TOOLS_ENABLED
if (Engine::get_singleton()->is_editor_hint() && get_tree()->get_edited_scene_root() && get_tree()->get_edited_scene_root()->is_a_parent_of(this)) {
//edited on editor
set_as_toplevel(false);
}
} else
#endif
if (is_visible()) {
hide();
}
}
}