Browse Source

Merge pull request #7355 from german77/hotkey_spam

hotkeys: Don't allow hotkeys to spam
nce_cpp
bunnei 4 years ago
committed by GitHub
parent
commit
00c30d56d1
  1. 2
      src/yuzu/hotkeys.cpp

2
src/yuzu/hotkeys.cpp

@ -46,6 +46,8 @@ QShortcut* HotkeyRegistry::GetHotkey(const QString& group, const QString& action
if (!hk.shortcut)
hk.shortcut = new QShortcut(hk.keyseq, widget, nullptr, nullptr, hk.context);
hk.shortcut->setAutoRepeat(false);
return hk.shortcut;
}

Loading…
Cancel
Save