winex11: Avoid useless updates of the desktop window Z-order.
This commit is contained in:
parent
9454e3ff7c
commit
f40b045858
|
@ -68,7 +68,7 @@ void X11DRV_Expose( HWND hwnd, XEvent *xev )
|
||||||
XExposeEvent *event = &xev->xexpose;
|
XExposeEvent *event = &xev->xexpose;
|
||||||
RECT rect;
|
RECT rect;
|
||||||
struct x11drv_win_data *data;
|
struct x11drv_win_data *data;
|
||||||
int flags = RDW_INVALIDATE | RDW_ERASE | RDW_ALLCHILDREN;
|
int flags = RDW_INVALIDATE | RDW_ERASE;
|
||||||
|
|
||||||
TRACE( "win %p (%lx) %d,%d %dx%d\n",
|
TRACE( "win %p (%lx) %d,%d %dx%d\n",
|
||||||
hwnd, event->window, event->x, event->y, event->width, event->height );
|
hwnd, event->window, event->x, event->y, event->width, event->height );
|
||||||
|
@ -89,22 +89,24 @@ void X11DRV_Expose( HWND hwnd, XEvent *xev )
|
||||||
rect.right = rect.left + event->width;
|
rect.right = rect.left + event->width;
|
||||||
rect.bottom = rect.top + event->height;
|
rect.bottom = rect.top + event->height;
|
||||||
|
|
||||||
if (event->window == root_window)
|
if (event->window != root_window)
|
||||||
OffsetRect( &rect, virtual_screen_rect.left, virtual_screen_rect.top );
|
|
||||||
|
|
||||||
SERVER_START_REQ( update_window_zorder )
|
|
||||||
{
|
{
|
||||||
req->window = hwnd;
|
SERVER_START_REQ( update_window_zorder )
|
||||||
req->rect.left = rect.left;
|
{
|
||||||
req->rect.top = rect.top;
|
req->window = hwnd;
|
||||||
req->rect.right = rect.right;
|
req->rect.left = rect.left;
|
||||||
req->rect.bottom = rect.bottom;
|
req->rect.top = rect.top;
|
||||||
wine_server_call( req );
|
req->rect.right = rect.right;
|
||||||
}
|
req->rect.bottom = rect.bottom;
|
||||||
SERVER_END_REQ;
|
wine_server_call( req );
|
||||||
|
}
|
||||||
|
SERVER_END_REQ;
|
||||||
|
|
||||||
|
/* make position relative to client area instead of parent */
|
||||||
|
OffsetRect( &rect, -data->client_rect.left, -data->client_rect.top );
|
||||||
|
flags |= RDW_ALLCHILDREN;
|
||||||
|
}
|
||||||
|
|
||||||
/* make position relative to client area instead of parent */
|
|
||||||
OffsetRect( &rect, -data->client_rect.left, -data->client_rect.top );
|
|
||||||
RedrawWindow( hwnd, &rect, 0, flags );
|
RedrawWindow( hwnd, &rect, 0, flags );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue