Merge pull request #51781 from yjh0502/fix-window-notification

Fix bug on window notification propagation
This commit is contained in:
Rémi Verschelde 2021-08-17 09:48:53 +02:00 committed by GitHub
commit 6c3d3f497c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ void Window::_propagate_window_notification(Node *p_node, int p_notification) {
Node *child = p_node->get_child(i);
Window *window = Object::cast_to<Window>(child);
if (window) {
break;
continue;
}
_propagate_window_notification(child, p_notification);
}