From 7775263f8292b61d525b5b049ad12fdd3fd1c827 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sun, 15 Dec 2013 16:13:45 +0000 Subject: hotkey plugin: fixed 'win' modifier (windows only) git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3967 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/hotkey/hotkeymanager_win.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/General') 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] + "+"); -- cgit v1.2.3-13-gbd6f