Re: [try 2][PATCH 2/2] user32: Fixed minimal size of child windows.
12 Sep
2008
12 Sep
'08
9:10 a.m.
Florian Köberle <FloriansKarten(a)web.de> writes:
diff --git a/dlls/user32/winpos.c b/dlls/user32/winpos.c index 21e1554..79140a0 100644 --- a/dlls/user32/winpos.c +++ b/dlls/user32/winpos.c @@ -708,14 +708,16 @@ void WINPOS_GetMinMaxInfo( HWND hwnd, POINT *maxSize, POINT *maxPos,
MinMax.ptMaxSize.x = rc.right - rc.left; MinMax.ptMaxSize.y = rc.bottom - rc.top; + MinMax.ptMinTrackSize.x = 6; + MinMax.ptMinTrackSize.y = 6;
You should figure out why the current computation doesn't yield the right values. It certainly shouldn't be hardcoded to 6. -- Alexandre Julliard julliard(a)winehq.org
6302
Age (days ago)
6302
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard