diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-08-03 17:28:19 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-08-03 17:28:19 +0000 |
| commit | 14a8533882021e787ecf76997d153b7b3e7a0887 (patch) | |
| tree | dfbf8c0a0c2eec598cbfee00dff1f4b13042cf85 /src/plugins | |
| parent | 9094f60e0d16e1eac1921727ace7fef1fa16f6d8 (diff) | |
| download | qmmp-14a8533882021e787ecf76997d153b7b3e7a0887.tar.gz qmmp-14a8533882021e787ecf76997d153b7b3e7a0887.tar.bz2 qmmp-14a8533882021e787ecf76997d153b7b3e7a0887.zip | |
hotkey plugin: fixed default settings (#707)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5315 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/General/hotkey/hotkeymanager_x11.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/General/hotkey/hotkeymanager_x11.cpp b/src/plugins/General/hotkey/hotkeymanager_x11.cpp index b24feab84..7a3abacf6 100644 --- a/src/plugins/General/hotkey/hotkeymanager_x11.cpp +++ b/src/plugins/General/hotkey/hotkeymanager_x11.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2014 by Ilya Kotov * + * Copyright (C) 2009-2015 by Ilya Kotov * * forkotov02@hotmail.ru * * * * Copyright (C) 2003-2007 by Justin Karneges and Michail Pishchagin * @@ -62,10 +62,10 @@ quint32 Hotkey::defaultKey(int act) { //default key bindings QMap<int, quint32> keyMap; - keyMap[PLAY] = XF86XK_AudioPlay; + keyMap[PLAY] = 0; keyMap[STOP] = XF86XK_AudioStop; keyMap[PAUSE] = XF86XK_AudioPause; - keyMap[PLAY_PAUSE] = 0; + keyMap[PLAY_PAUSE] = XF86XK_AudioPlay; keyMap[NEXT] = XF86XK_AudioNext; keyMap[PREVIOUS] = XF86XK_AudioPrev; keyMap[SHOW_HIDE] = 0; |
