1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-07 19:53:17 +00:00

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

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);
}