mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[WIN32SS:NTUSER] Fix window state after restoring snapped window (#4119)
InternalPos.NormalRect is a key data for detecting whether a window was snapped. Keeping it after restore affecting next snap actions. CORE-16477
This commit is contained in:
parent
6a4ca215ab
commit
db810d8e44
1 changed files with 7 additions and 0 deletions
|
@ -815,9 +815,16 @@ IntDefWindowProc(
|
|||
if (wParam == VK_DOWN)
|
||||
{
|
||||
if (topWnd->style & WS_MAXIMIZE)
|
||||
{
|
||||
co_IntSendMessage(hwndTop, WM_SYSCOMMAND, SC_RESTORE, lParam);
|
||||
|
||||
/* "Normal size" must be erased after restoring, otherwise it will block next side snap actions */
|
||||
RECTL_vSetEmptyRect(&topWnd->InternalPos.NormalRect);
|
||||
}
|
||||
else
|
||||
{
|
||||
co_IntSendMessage(hwndTop, WM_SYSCOMMAND, SC_MINIMIZE, lParam);
|
||||
}
|
||||
}
|
||||
else if (wParam == VK_UP)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue