From 60fedf09703e8e8351c01dcea3075f4e5c50ba4c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 22 Apr 2022 16:22:05 -0400 Subject: Windows: Remove redundant view size assignment --- src/win.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src') diff --git a/src/win.c b/src/win.c index f5f674c..13c8863 100644 --- a/src/win.c +++ b/src/win.c @@ -483,11 +483,6 @@ handleConfigure(PuglView* view, PuglEvent* event) event->configure.width = width; event->configure.height = height; - if (view->frame.width != width || view->frame.height != height) { - view->frame.width = width; - view->frame.height = height; - } - return rect; } -- cgit v1.2.1