From 9e84ee8e52be84cf3eb252ff0b8fdf45dce20d58 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 7 Apr 2022 10:16:11 -0400 Subject: [PATCH] trying to optimize resizing --- minigui.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minigui.d b/minigui.d index e193b2e..441b2fd 100644 --- a/minigui.d +++ b/minigui.d @@ -7720,8 +7720,8 @@ class Window : Widget { this.width = w; this.height = h; recomputeChildLayout(); - version(win32_widgets) - InvalidateRect(hwnd, null, true); + //version(win32_widgets) + //InvalidateRect(hwnd, null, true); redraw(); };