mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 04:23:02 +00:00
- Don't allow making a window with negative dimensions in WM_WINDOWPOSCHANGING.
svn path=/trunk/; revision=9367
This commit is contained in:
parent
83c27bebc6
commit
3da87fae97
2 changed files with 9 additions and 1 deletions
|
@ -491,6 +491,9 @@ static LRESULT COMBO_WindowPosChanging(
|
|||
}
|
||||
}
|
||||
|
||||
posChanging->cx = max(posChanging->cx, 0);
|
||||
posChanging->cy = max(posChanging->cy, 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue