From 330b31ae2eae7f429661672d466983201cf6b4c5 Mon Sep 17 00:00:00 2001
From: Narr the Reg <juangerman-13@hotmail.com>
Date: Tue, 1 Feb 2022 21:00:07 -0600
Subject: [PATCH] yuzu: Disable auto repeat on hotkeys again

---
 src/yuzu/main.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index d9e689d14b..556d2cdb38 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -965,6 +965,7 @@ void GMainWindow::LinkActionShortcut(QAction* action, const QString& action_name
     static const QString main_window = QStringLiteral("Main Window");
     action->setShortcut(hotkey_registry.GetKeySequence(main_window, action_name));
     action->setShortcutContext(hotkey_registry.GetShortcutContext(main_window, action_name));
+    action->setAutoRepeat(false);
 
     this->addAction(action);