actually, let's not stop invalidating the root node on configure_notify

This commit is contained in:
hippoz 2023-04-15 21:37:49 +03:00
parent 9302ac91b7
commit 3b534ad231
Signed by: hippoz
GPG key ID: 56C4E02A85F2FBED

View file

@ -426,6 +426,7 @@ static void window_process_xcb_event(UIWindow *window, xcb_generic_event_t *even
window->root->rect.w = ev->width;
window->root->rect.h = ev->height;
node_dispatch(window->root, UI_EVENT_RELAYOUT, 0, NULL);
window_invalidate_node(window, window->root);
#ifdef _UI_DEBUG
node_dump(window->root, 0);
#endif