From: Mikko Rasa Date: Sat, 11 Jan 2014 18:29:18 +0000 (+0200) Subject: Clear resizing flag on Windows when resizing completes X-Git-Url: http://git.tdb.fi/?p=libs%2Fgui.git;a=commitdiff_plain;h=ecd773e95ac440b123df5625fe71130982465097 Clear resizing flag on Windows when resizing completes --- diff --git a/source/graphics/windows/window.cpp b/source/graphics/windows/window.cpp index c5cdc62..e998950 100644 --- a/source/graphics/windows/window.cpp +++ b/source/graphics/windows/window.cpp @@ -158,6 +158,7 @@ bool Window::event(const Event &evnt) case WM_SIZE: options.width = LOWORD(evnt.lparam); options.height = HIWORD(evnt.lparam); + resizing = false; signal_resize.emit(options.width, options.height); break; case WM_CLOSE: