non-linux posix fixes

This commit is contained in:
Adam D. Ruppe 2017-10-27 15:07:43 -04:00
parent eb02005e01
commit 120f42a135
1 changed files with 1 additions and 1 deletions

View File

@ -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;