mirror of https://github.com/xemu-project/xemu.git
kbd-state: don't block auto-repeat events
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-id: 20190220100235.20914-1-kraxel@redhat.com
This commit is contained in:
parent
2e68b86206
commit
3592186015
|
@ -42,14 +42,18 @@ void qkbd_state_key_event(QKbdState *kbd, QKeyCode qcode, bool down)
|
||||||
{
|
{
|
||||||
bool state = test_bit(qcode, kbd->keys);
|
bool state = test_bit(qcode, kbd->keys);
|
||||||
|
|
||||||
if (state == down) {
|
if (down == false /* got key-up event */ &&
|
||||||
|
state == false /* key is not pressed */) {
|
||||||
/*
|
/*
|
||||||
* Filter out events which don't change the keyboard state.
|
* Filter out suspicious key-up events.
|
||||||
*
|
*
|
||||||
* Most notably this allows to simply send along all key-up
|
* This allows simply sending along all key-up events, and
|
||||||
* events, and this function will filter out everything where
|
* this function will filter out everything where the
|
||||||
* the corresponding key-down event wasn't send to the guest,
|
* corresponding key-down event wasn't sent to the guest, for
|
||||||
* for example due to being a host hotkey.
|
* example due to being a host hotkey.
|
||||||
|
*
|
||||||
|
* Note that key-down events on already pressed keys are *not*
|
||||||
|
* suspicious, those are keyboard autorepeat events.
|
||||||
*/
|
*/
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue