diff options
| author | David Robillard <d@drobilla.net> | 2019-07-21 15:59:03 +0200 | 
|---|---|---|
| committer | David Robillard <d@drobilla.net> | 2019-07-21 15:59:03 +0200 | 
| commit | fe920b2cbca0ff77d371708953d32b99a300e2a2 (patch) | |
| tree | dbe36374ded200ed10e570c4b71ba642bd5f7d3e | |
| parent | b5ef9123301370a785ce6ff28adc27e64486ea5d (diff) | |
Fix initial display on Windows again
| -rw-r--r-- | pugl/pugl_win.c | 1 | 
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); | 
