http://bugs.winehq.org/show_bug.cgi?id=5034
mike@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed| |1
------- Additional Comments From mike@codeweavers.com 2006-09-04 23:00 -------
Maybe something like this can point you in the right direction when trying to fix the bug?
diff --git a/dlls/commdlg/filedlg.c b/dlls/commdlg/filedlg.c index 428841f..d46e7b0 100644 --- a/dlls/commdlg/filedlg.c +++ b/dlls/commdlg/filedlg.c @@ -696,6 +696,8 @@ static void ArrangeCtrlPositions(HWND hw else { rectParent.bottom += rectChild.bottom; + if (rectParent.right < rectChild.right) + rectParent.right = rectChild.right; }
/* finally use fixed parent size */