xwm: dont flush if no events

This commit is contained in:
Tony Crisci 2017-10-25 18:51:15 -04:00
parent b443b9a998
commit d6a1e6fd79
1 changed files with 4 additions and 1 deletions

View File

@ -739,7 +739,10 @@ static int x11_event_handler(int fd, uint32_t mask, void *data) {
free(event);
}
xcb_flush(xwm->xcb_conn);
if (count) {
xcb_flush(xwm->xcb_conn);
}
return count;
}