From a88b470d9c954073fcfcfeca2242809532eaf048 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 20 May 2022 21:09:15 -0400 Subject: Windows: Send configure events when frame moves or resizes --- src/win.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/win.c b/src/win.c index 26dd4c8..8f2a26b 100644 --- a/src/win.c +++ b/src/win.c @@ -604,6 +604,9 @@ handleMessage(PuglView* view, UINT message, WPARAM wParam, LPARAM lParam) InvalidateRect(view->impl->hwnd, NULL, false); } break; + case WM_WINDOWPOSCHANGED: + handleConfigure(view, &event); + break; case WM_SIZING: if (view->sizeHints[PUGL_MIN_ASPECT].width) { constrainAspect(view, (RECT*)lParam, wParam); -- cgit v1.2.1