diff options
| -rw-r--r-- | src/plugins/General/hotkey/hotkeymanager_win.cpp | 2 |
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] + "+");
|
