mirror of
https://github.com/libretro/Play-.git
synced 2024-11-27 18:50:28 +00:00
Filter out auto repeat key events.
This commit is contained in:
parent
c6985d1f9c
commit
d69c6e1c5c
@ -185,6 +185,7 @@ void InputEventSelectionDialog::keyPressEvent(QKeyEvent* ev)
|
||||
|
||||
void InputEventSelectionDialog::keyReleaseEvent(QKeyEvent* ev)
|
||||
{
|
||||
if(ev->isAutoRepeat()) return;
|
||||
m_qtKeyInputProvider->OnKeyRelease(ev->key());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user