mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +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
@ -441,18 +441,22 @@ void WindowImplWin32::ProcessEvent(UINT message, WPARAM wParam, LPARAM lParam)
|
||||
// Resize event
|
||||
case WM_SIZE :
|
||||
{
|
||||
// Update window size
|
||||
RECT rectangle;
|
||||
GetClientRect(myHandle, &rectangle);
|
||||
myWidth = rectangle.right - rectangle.left;
|
||||
myHeight = rectangle.bottom - rectangle.top;
|
||||
// Ignore size events triggered by a minimize (size == 0 in this case)
|
||||
if (wParam != SIZE_MINIMIZED)
|
||||
{
|
||||
// Update window size
|
||||
RECT rectangle;
|
||||
GetClientRect(myHandle, &rectangle);
|
||||
myWidth = rectangle.right - rectangle.left;
|
||||
myHeight = rectangle.bottom - rectangle.top;
|
||||
|
||||
Event event;
|
||||
event.Type = Event::Resized;
|
||||
event.Size.Width = myWidth;
|
||||
event.Size.Height = myHeight;
|
||||
PushEvent(event);
|
||||
break;
|
||||
Event event;
|
||||
event.Type = Event::Resized;
|
||||
event.Size.Width = myWidth;
|
||||
event.Size.Height = myHeight;
|
||||
PushEvent(event);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Gain focus event
|
||||
|
Loading…
Reference in New Issue
Block a user