Merge pull request #3075 from swaywm/revert-3073-swayidle_workaround

Revert "Work around swayidle never triggering on SIGUSR1"
This commit is contained in:
Drew DeVault 2018-11-05 18:22:29 +01:00 committed by GitHub
commit 77d581f144
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -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) {