Fix warn print when hide an control does not inside_tree
(cherry picked from commit 5ec7d3f264
)
This commit is contained in:
parent
02afea1e4e
commit
76eeb457d3
@ -524,8 +524,11 @@ void Control::_notification(int p_notification) {
|
|||||||
|
|
||||||
if(get_viewport() != NULL)
|
if(get_viewport() != NULL)
|
||||||
get_viewport()->_gui_hid_control(this);
|
get_viewport()->_gui_hid_control(this);
|
||||||
|
|
||||||
|
if(is_inside_tree()) {
|
||||||
_modal_stack_remove();
|
_modal_stack_remove();
|
||||||
minimum_size_changed();
|
minimum_size_changed();
|
||||||
|
}
|
||||||
|
|
||||||
//remove key focus
|
//remove key focus
|
||||||
//remove modalness
|
//remove modalness
|
||||||
|
Loading…
Reference in New Issue
Block a user