Actually fix swayidle

I also didn't test this commit though so who knows
This commit is contained in:
Drew DeVault 2018-05-13 20:21:37 -04:00
parent b65a75a6e1
commit 270c1ee7e5

View File

@ -407,8 +407,8 @@ 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 (1) {
wl_event_loop_dispatch_idle(state.event_loop);
while (wl_event_loop_dispatch(state.event_loop, -1) != 1) {
// This space intentionally left blank
}
sway_terminate(0);