From 07ba65842428ad50367847c7236881d814620ef4 Mon Sep 17 00:00:00 2001 From: Richard Gill Date: Thu, 13 May 2021 23:12:27 +0200 Subject: Remove redundant conditional --- src/x11.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src') diff --git a/src/x11.c b/src/x11.c index 50695ff..15f9e92 100644 --- a/src/x11.c +++ b/src/x11.c @@ -1079,11 +1079,7 @@ flushExposures(PuglWorld* const world) view->backend->leave(view, &expose.expose); } else if (configure.type) { view->backend->enter(view, NULL); - - if (configure.type) { - puglConfigure(view, &configure); - } - + puglConfigure(view, &configure); view->backend->leave(view, NULL); } } -- cgit v1.2.1