Browse Source
Merge pull request #7834 from german77/repeat
yuzu: Disable auto repeat on hotkeys again
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
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); |
|
|
|
|
|
|
|
|