mirror of
https://github.com/reactos/reactos.git
synced 2025-06-01 23:48:12 +00:00
[USER32] Fix DM_REPOSITION (rc.bottom minus 4)
This commit is contained in:
parent
8249d2a3fa
commit
657887adf4
1 changed files with 2 additions and 2 deletions
|
@ -1203,9 +1203,9 @@ static void DEFDLG_Reposition(HWND hwnd)
|
||||||
rc.right = mi.rcWork.right;
|
rc.right = mi.rcWork.right;
|
||||||
rc.left = rc.right - siz.cx;
|
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;
|
rc.top = rc.bottom - siz.cy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue