From ecd773e95ac440b123df5625fe71130982465097 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 11 Jan 2014 20:29:18 +0200 Subject: [PATCH] Clear resizing flag on Windows when resizing completes --- source/graphics/windows/window.cpp | 1 + 1 file changed, 1 insertion(+) 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: -- 2.43.0