aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/hotkey
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/hotkey')
-rw-r--r--src/plugins/General/hotkey/hotkeymanager_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/General/hotkey/hotkeymanager_win.cpp b/src/plugins/General/hotkey/hotkeymanager_win.cpp
index cb6e96e5e..3e074d941 100644
--- a/src/plugins/General/hotkey/hotkeymanager_win.cpp
+++ b/src/plugins/General/hotkey/hotkeymanager_win.cpp
@@ -201,7 +201,7 @@ const QString HotkeyManager::getKeyString(quint32 key, quint32 modifiers)
quint32 modList[] = { HOTKEYF_CONTROL, HOTKEYF_SHIFT, HOTKEYF_ALT, HOTKEYF_EXT};
QString keyStr;
- for (int j = 0; j < 3; j++)
+ for (int j = 0; j < 4; j++)
{
if (modifiers & modList[j])
keyStr.append(strModList[j] + "+");