From ae22366f3bc8e9a364c1a25436e182269e050032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 1 Mar 2020 13:20:07 +0100 Subject: [PATCH] input: raise window 'move' timeout to 200ms 100ms was a bit low and prevented double-tap on touchpads from working. --- input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input.c b/input.c index bf3a0a91..2fde9ca4 100644 --- a/input.c +++ b/input.c @@ -917,7 +917,7 @@ wl_pointer_button(void *data, struct wl_pointer *wl_pointer, else if (button == BTN_LEFT && win->csd.move_timeout_fd == -1) { const struct itimerspec timeout = { - .it_value = {.tv_nsec = 100000000}, + .it_value = {.tv_nsec = 200000000}, }; int fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC | TFD_NONBLOCK);