winex11: Force the X11 size of zero-sized window to always be 1x1.

This commit is contained in:
Alexandre Julliard 2008-09-17 21:11:47 +02:00
parent 9e3b9f8b41
commit 308476ef2f
1 changed files with 4 additions and 2 deletions

View File

@ -1216,8 +1216,10 @@ static void sync_window_position( Display *display, struct x11drv_win_data *data
/* resizing a managed maximized window is not allowed */
if (!(style & WS_MAXIMIZE) || !data->managed)
{
if ((changes.width = data->whole_rect.right - data->whole_rect.left) <= 0) changes.width = 1;
if ((changes.height = data->whole_rect.bottom - data->whole_rect.top) <= 0) changes.height = 1;
changes.width = data->whole_rect.right - data->whole_rect.left;
changes.height = data->whole_rect.bottom - data->whole_rect.top;
/* if window rect is empty force size to 1x1 */
if (changes.width <= 0 || changes.height <= 0) changes.width = changes.height = 1;
mask |= CWWidth | CWHeight;
}