From e60edf53d589f5a5339efa8d1907332a8a88a26d Mon Sep 17 00:00:00 2001 From: Clayton Groeneveld Date: Sun, 23 Aug 2020 04:15:44 -0500 Subject: [PATCH] UI: Fix hotkeys auto repeating --- UI/obs-app.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp index aee14ba51..136761e3b 100644 --- a/UI/obs-app.cpp +++ b/UI/obs-app.cpp @@ -195,6 +195,9 @@ QObject *CreateShortcutFilter() event->nativeVirtualKey()); } + if (event->isAutoRepeat()) + return true; + hotkey.modifiers = TranslateQtKeyboardEventModifiers( event->modifiers());