always handle XEvents

This prevents queueing up of key-presses when no window is shown, which
would close the message immediatly
This commit is contained in:
Sascha Kruse 2011-09-28 17:27:00 +02:00
parent 6240ebb237
commit 16320b0f8d

View File

@ -492,8 +492,8 @@ run(void) {
if(msgqueue != NULL) { if(msgqueue != NULL) {
show_win(); show_win();
check_timeouts(); check_timeouts();
handleXEvents();
} }
handleXEvents();
} }
} }