diff options
author | bunnei <bunneidev@gmail.com> | 2022-02-02 21:20:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 21:20:18 +0100 |
commit | 9484519ec368d74a87233e886d4266be2bd2d40e (patch) | |
tree | 1d0544316b3e471a3f79744ef7fda50e285ea0de | |
parent | Merge pull request #7806 from ameerj/atomic64-fallbacks (diff) | |
parent | yuzu: Disable auto repeat on hotkeys again (diff) | |
download | yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.tar yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.tar.gz yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.tar.bz2 yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.tar.lz yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.tar.xz yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.tar.zst yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.zip |
-rw-r--r-- | src/yuzu/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index d9e689d14..556d2cdb3 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); |