UI: Fix hotkeys auto repeating

This commit is contained in:
Clayton Groeneveld 2020-08-23 04:15:44 -05:00
parent e36b9c309d
commit e60edf53d5

View File

@ -195,6 +195,9 @@ QObject *CreateShortcutFilter()
event->nativeVirtualKey());
}
if (event->isAutoRepeat())
return true;
hotkey.modifiers = TranslateQtKeyboardEventModifiers(
event->modifiers());