mirror of
https://github.com/reactos/reactos.git
synced 2026-06-02 01:11:03 +08:00
[USER32] Fix DM_REPOSITION (rc.bottom minus 4)
This commit is contained in:
@@ -1203,9 +1203,9 @@ static void DEFDLG_Reposition(HWND hwnd)
|
||||
rc.right = mi.rcWork.right;
|
||||
rc.left = rc.right - siz.cx;
|
||||
}
|
||||
if (rc.bottom > mi.rcWork.bottom)
|
||||
if (rc.bottom > mi.rcWork.bottom - 4)
|
||||
{
|
||||
rc.bottom = mi.rcWork.bottom;
|
||||
rc.bottom = mi.rcWork.bottom - 4;
|
||||
rc.top = rc.bottom - siz.cy;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user