1
1
mirror of https://github.com/swaywm/sway synced 2024-09-30 04:51:18 +02:00

Revert "Work around swayidle never triggering on SIGUSR1"

This commit is contained in:
Drew DeVault 2018-11-05 12:12:44 -05:00 committed by GitHub
parent 0e985d6c8e
commit 9a3cd000a3
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

@ -347,9 +347,7 @@ void sway_terminate(int exit_code) {
static void register_zero_idle_timeout(void *item) {
struct swayidle_timeout_cmd *cmd = item;
// A zero timeout never actually triggers. Adding a 50ms timeout is most
// likely not the correct fix either, but will work
register_timeout(cmd, 50);
register_timeout(cmd, 0);
}
static int handle_signal(int sig, void *data) {