diff options
| author | 2022-02-02 13:20:18 -0700 | |
|---|---|---|
| committer | 2022-02-02 13:20:18 -0700 | |
| commit | 9484519ec368d74a87233e886d4266be2bd2d40e (patch) | |
| tree | 1d0544316b3e471a3f79744ef7fda50e285ea0de /src | |
| parent | Merge pull request #7806 from ameerj/atomic64-fallbacks (diff) | |
| parent | yuzu: Disable auto repeat on hotkeys again (diff) | |
| download | yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.tar.gz yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.tar.xz yuzu-9484519ec368d74a87233e886d4266be2bd2d40e.zip | |
Merge pull request #7834 from german77/repeat
yuzu: Disable auto repeat on hotkeys again
Diffstat (limited to '')
| -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 | |||
| 965 | static const QString main_window = QStringLiteral("Main Window"); | 965 | static const QString main_window = QStringLiteral("Main Window"); |
| 966 | action->setShortcut(hotkey_registry.GetKeySequence(main_window, action_name)); | 966 | action->setShortcut(hotkey_registry.GetKeySequence(main_window, action_name)); |
| 967 | action->setShortcutContext(hotkey_registry.GetShortcutContext(main_window, action_name)); | 967 | action->setShortcutContext(hotkey_registry.GetShortcutContext(main_window, action_name)); |
| 968 | action->setAutoRepeat(false); | ||
| 968 | 969 | ||
| 969 | this->addAction(action); | 970 | this->addAction(action); |
| 970 | 971 | ||