diff options
author | Alexander Graf <agraf@suse.de> | 2017-07-12 14:43:45 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-07-17 11:35:27 +0200 |
commit | d3b0db6dfea6b3a9ee0d96aceb796bdcafa84314 (patch) | |
tree | 20eb139b40a649d5a6b2282cc094b38d80a062da /ui | |
parent | 6e2c46334385c7e295ac883c801c81b4925fb54f (diff) | |
download | qemu-d3b0db6dfea6b3a9ee0d96aceb796bdcafa84314.zip qemu-d3b0db6dfea6b3a9ee0d96aceb796bdcafa84314.tar.gz qemu-d3b0db6dfea6b3a9ee0d96aceb796bdcafa84314.tar.bz2 |
vnc: Set default kbd delay to 10ms
The current VNC default keyboard delay is 1ms. With that we're constantly
typing faster than the guest receives keyboard events from an XHCI attached
USB HID device.
The default keyboard delay time in the input layer however is 10ms. I don't know
how that number came to be, but empirical tests on some OpenQA driven ARM
systems show that 10ms really is a reasonable default number for the delay.
This patch moves the VNC delay also to 10ms. That way our default is much
safer (good!) and also consistent with the input layer default (also good!).
Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
Message-id: 1499863425-103133-1-git-send-email-agraf@suse.de
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/vnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3808,7 +3808,7 @@ void vnc_display_open(const char *id, Error **errp) } lock_key_sync = qemu_opt_get_bool(opts, "lock-key-sync", true); - key_delay_ms = qemu_opt_get_number(opts, "key-delay-ms", 1); + key_delay_ms = qemu_opt_get_number(opts, "key-delay-ms", 10); sasl = qemu_opt_get_bool(opts, "sasl", false); #ifndef CONFIG_VNC_SASL if (sasl) { |