Ensure nothing is found outside modal stack, but keep logic going. Fixes #7622

This commit is contained in:
Juan Linietsky 2017-08-15 07:32:15 -03:00
parent 7fc3c51169
commit fdc2cdef0b

View file

@ -1932,8 +1932,7 @@ void Viewport::_gui_input_event(Ref<InputEvent> p_event) {
Control *top = gui.modal_stack.back()->get();
if (over != top && !top->is_a_parent_of(over)) {
return; // don't send motion event to anything below modal stack top
over = NULL; //nothing can be found outside the modal stack
}
}