From 247e18fb14f447bf072019e7e863a271496ed4d9 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 13 Jun 2001 19:43:53 +0000 Subject: [PATCH] Force invalidating of siblings children on expose event. --- windows/x11drv/event.c | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/x11drv/event.c b/windows/x11drv/event.c index 5ac098a1cbb..e36506b2e21 100644 --- a/windows/x11drv/event.c +++ b/windows/x11drv/event.c @@ -424,6 +424,7 @@ static void EVENT_Expose( HWND hwnd, XExposeEvent *event ) OffsetRect( &rect, win->rectClient.left, win->rectClient.top ); WIN_UpdateWndPtr( &win, win->parent ); flags &= ~RDW_FRAME; /* parent will invalidate children frame anyway */ + flags |= RDW_ALLCHILDREN; /* force invalidating all children of siblings */ } hwnd = win->hwndSelf; WIN_ReleaseWndPtr(win);