diff options
author | nicm <nicm> | 2019-11-28 09:50:09 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-11-28 09:50:09 +0000 |
commit | 9ea05b2fb32395d717ead5d7904acdfaa852b068 (patch) | |
tree | 0a1f34b4e16b55b234056a67a0cdead84e4a0979 | |
parent | 2349b1dbef7cd0b4a165cd234d6757c34d5e02e6 (diff) | |
download | rtmux-9ea05b2fb32395d717ead5d7904acdfaa852b068.tar.gz rtmux-9ea05b2fb32395d717ead5d7904acdfaa852b068.tar.bz2 rtmux-9ea05b2fb32395d717ead5d7904acdfaa852b068.zip |
Bump the escape sequence timeout to five seconds to allow for longer
legitimate sequences.
-rw-r--r-- | input.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -740,7 +740,7 @@ input_timer_callback(__unused int fd, __unused short events, void *arg) static void input_start_timer(struct input_ctx *ictx) { - struct timeval tv = { .tv_usec = 100000 }; + struct timeval tv = { .tv_sec = 5, .tv_usec = 0 }; event_del(&ictx->timer); event_add(&ictx->timer, &tv); |