user32: AdjustWindowRect() shouldn't ignore WS_MINIMIZE.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
118f333ac2
commit
23f26266ef
|
@ -315,8 +315,6 @@ BOOL WINAPI DECLSPEC_HOTPATCH AdjustWindowRectEx( LPRECT rect, DWORD style, BOOL
|
|||
{
|
||||
NONCLIENTMETRICSW ncm;
|
||||
|
||||
if (style & WS_MINIMIZE) return TRUE;
|
||||
|
||||
TRACE("(%s) %08x %d %08x\n", wine_dbgstr_rect(rect), style, menu, exStyle );
|
||||
|
||||
ncm.cbSize = sizeof(ncm);
|
||||
|
@ -335,8 +333,6 @@ BOOL WINAPI DECLSPEC_HOTPATCH AdjustWindowRectExForDpi( LPRECT rect, DWORD style
|
|||
{
|
||||
NONCLIENTMETRICSW ncm;
|
||||
|
||||
if (style & WS_MINIMIZE) return TRUE;
|
||||
|
||||
TRACE("(%s) %08x %d %08x %u\n", wine_dbgstr_rect(rect), style, menu, exStyle, dpi );
|
||||
|
||||
ncm.cbSize = sizeof(ncm);
|
||||
|
|
|
@ -5342,7 +5342,7 @@ static void test_AWR_window_size(BOOL menu)
|
|||
|
||||
static void test_AWR_flags(void)
|
||||
{
|
||||
static const DWORD styles[] = { WS_POPUP, WS_BORDER, WS_DLGFRAME, WS_THICKFRAME };
|
||||
static const DWORD styles[] = { WS_POPUP, WS_BORDER, WS_DLGFRAME, WS_THICKFRAME, WS_MINIMIZE };
|
||||
static const DWORD exStyles[] = { WS_EX_CLIENTEDGE, WS_EX_TOOLWINDOW, WS_EX_WINDOWEDGE,
|
||||
WS_EX_APPWINDOW, WS_EX_DLGMODALFRAME, WS_EX_STATICEDGE };
|
||||
|
||||
|
|
Loading…
Reference in New Issue