From fe920b2cbca0ff77d371708953d32b99a300e2a2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 21 Jul 2019 15:59:03 +0200 Subject: Fix initial display on Windows again --- pugl/pugl_win.c | 1 + 1 file changed, 1 insertion(+) (limited to 'pugl') diff --git a/pugl/pugl_win.c b/pugl/pugl_win.c index 05888d3..dbb62af 100644 --- a/pugl/pugl_win.c +++ b/pugl/pugl_win.c @@ -653,6 +653,7 @@ handleMessage(PuglView* view, UINT message, WPARAM wParam, LPARAM lParam) rect = handleConfigure(view, &event); InvalidateRect(view->impl->hwnd, &rect, FALSE); UpdateWindow(view->impl->hwnd); + puglPostRedisplay(view); break; case WM_SIZE: handleConfigure(view, &event); -- cgit v1.2.1