winex11.drv: Call SetWindowPos with SWP_FRAMECHANGED set when switching from minimized state in X11DRV_MapNotify.

This commit is contained in:
Dmitry Timoshkov 2006-11-08 16:17:19 +08:00 committed by Alexandre Julliard
parent d949867ded
commit ffd80ba7b1

View file

@ -1183,7 +1183,7 @@ void X11DRV_MapNotify( HWND hwnd, XEvent *event )
SendMessageW( hwnd, WM_SHOWWINDOW, SW_RESTORE, 0 );
data->lock_changes++;
SetWindowPos( hwnd, 0, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top,
SWP_NOZORDER );
SWP_NOZORDER | SWP_FRAMECHANGED );
data->lock_changes--;
}
else WIN_ReleasePtr( win );