mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 12:45:42 -04:00
Qt: Ignore key repeat events for input
This commit is contained in:
parent
d61f12cb4e
commit
6d5eca13a6
@ -72,11 +72,17 @@ void QtDisplayWindow::onWindowResized(int width, int height)
|
||||
|
||||
void QtDisplayWindow::keyPressEvent(QKeyEvent* event)
|
||||
{
|
||||
if (event->isAutoRepeat())
|
||||
return;
|
||||
|
||||
m_host_interface->handleKeyEvent(event->key(), true);
|
||||
}
|
||||
|
||||
void QtDisplayWindow::keyReleaseEvent(QKeyEvent* event)
|
||||
{
|
||||
if (event->isAutoRepeat())
|
||||
return;
|
||||
|
||||
m_host_interface->handleKeyEvent(event->key(), false);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user