From 120f42a1354526f44a45225832ea57c4b8fa1ed7 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 27 Oct 2017 15:07:43 -0400 Subject: [PATCH] non-linux posix fixes --- simpledisplay.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpledisplay.d b/simpledisplay.d index 2c7fd06..16f353a 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -2526,7 +2526,7 @@ struct EventLoopImpl { scope(exit) this.mtUnlock(); done = doXNextEvent(this.display); } - if(!done && !closed && pulseTimeout !=0) { + if(!done && pulseTimeout !=0) { if(handlePulse !is null) handlePulse(); import core.thread;