瀏覽代碼

hotkeys: Don't allow hotkeys to spam

german77 4 年之前
父節點
當前提交
311324e231
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/yuzu/hotkeys.cpp

+ 2 - 0
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;
 }