swayidle: use wl_event_loop_dispatch_idle

Fixes #1977
This commit is contained in:
Drew DeVault 2018-05-13 19:32:16 -04:00
parent 404d006a1c
commit b65a75a6e1
1 changed files with 3 additions and 2 deletions

View File

@ -407,8 +407,9 @@ int main(int argc, char *argv[]) {
wl_event_loop_add_fd(state.event_loop, wl_display_get_fd(state.display),
WL_EVENT_READABLE, display_event, NULL);
while (wl_event_loop_dispatch(state.event_loop, 0) != -1) {
; //Intentionally left blank;
while (1) {
wl_event_loop_dispatch_idle(state.event_loop);
}
sway_terminate(0);
}