mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
input: handle mixing key press and up/down events better
This commit is contained in:
parent
60dbf192d1
commit
11d72b0999
@ -593,10 +593,11 @@ static void interpret_key(struct input_ctx *ictx, int code, double scale)
|
|||||||
release_down_cmd(ictx, false);
|
release_down_cmd(ictx, false);
|
||||||
} else {
|
} else {
|
||||||
// Press of key with no separate down/up events
|
// Press of key with no separate down/up events
|
||||||
if (ictx->last_key_down == code) {
|
// Mixing press events and up/down with the same key is not supported,
|
||||||
// Mixing press events and up/down with the same key is not allowed
|
// and input sources shouldn't do this, but can happen anyway if
|
||||||
MP_WARN(ictx, "Mixing key presses and up/down.\n");
|
// multiple input sources interfere with each others.
|
||||||
}
|
if (ictx->last_key_down == code)
|
||||||
|
release_down_cmd(ictx, false);
|
||||||
cmd = resolve_key(ictx, code);
|
cmd = resolve_key(ictx, code);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user