aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/pugl_win.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-07-21 15:59:03 +0200
committerDavid Robillard <d@drobilla.net>2019-07-21 15:59:03 +0200
commitfe920b2cbca0ff77d371708953d32b99a300e2a2 (patch)
treedbe36374ded200ed10e570c4b71ba642bd5f7d3e /pugl/pugl_win.c
parentb5ef9123301370a785ce6ff28adc27e64486ea5d (diff)
downloadpugl-fe920b2cbca0ff77d371708953d32b99a300e2a2.tar.gz
pugl-fe920b2cbca0ff77d371708953d32b99a300e2a2.tar.bz2
pugl-fe920b2cbca0ff77d371708953d32b99a300e2a2.zip
Fix initial display on Windows again
Diffstat (limited to 'pugl/pugl_win.c')
-rw-r--r--pugl/pugl_win.c1
1 files changed, 1 insertions, 0 deletions
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);