diff options
author | Jonas Gutenschwager <spam.saikai@googlemail.com> | 2023-01-18 00:39:31 +0100 |
---|---|---|
committer | Jonas Gutenschwager <spam.saikai@googlemail.com> | 2023-01-18 00:39:31 +0100 |
commit | 83754e4789b9c40dc0c3324adde7cb5c008577b5 (patch) | |
tree | b1ae6f18dabc296f04c533cb6727dd3ffd65497e /src/yuzu/hotkeys.h | |
parent | 28fde29924ed356c5714d1eccc4210e263a7dbdb (diff) |
allow volume up/down hotkeys to be repeated
Diffstat (limited to 'src/yuzu/hotkeys.h')
-rw-r--r-- | src/yuzu/hotkeys.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/hotkeys.h b/src/yuzu/hotkeys.h index dc5b7f628..848239c35 100644 --- a/src/yuzu/hotkeys.h +++ b/src/yuzu/hotkeys.h @@ -115,6 +115,7 @@ private: QShortcut* shortcut = nullptr; ControllerShortcut* controller_shortcut = nullptr; Qt::ShortcutContext context = Qt::WindowShortcut; + bool repeat; }; using HotkeyMap = std::map<QString, Hotkey>; |