invalidate for child windows on resize

This commit is contained in:
Adam D. Ruppe 2019-08-25 21:47:08 -04:00
parent 8b9277ebfd
commit 149a23ec09
1 changed files with 2 additions and 0 deletions

View File

@ -3397,6 +3397,8 @@ class Window : Widget {
this.width = w;
this.height = h;
recomputeChildLayout();
version(win32_widgets)
InvalidateRect(hwnd, null, true);
redraw();
};