mirror of
https://github.com/SFML/SFML.git
synced 2024-11-28 22:31:09 +08:00
FS#160 - Windows size should not be reset to 0 when it is minimized
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1538 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
42615a30d9
commit
68cdbd31cc
@ -440,6 +440,9 @@ void WindowImplWin32::ProcessEvent(UINT message, WPARAM wParam, LPARAM lParam)
|
||||
|
||||
// Resize event
|
||||
case WM_SIZE :
|
||||
{
|
||||
// Ignore size events triggered by a minimize (size == 0 in this case)
|
||||
if (wParam != SIZE_MINIMIZED)
|
||||
{
|
||||
// Update window size
|
||||
RECT rectangle;
|
||||
@ -454,6 +457,7 @@ void WindowImplWin32::ProcessEvent(UINT message, WPARAM wParam, LPARAM lParam)
|
||||
PushEvent(event);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Gain focus event
|
||||
case WM_SETFOCUS :
|
||||
|
Loading…
Reference in New Issue
Block a user