Change "Go to current song" hotkey.

It was blocking Cmd-C (copy on macOS)
This commit is contained in:
Deluan 2022-12-18 20:58:01 -05:00 committed by Joe Stump
parent 65ec193d84
commit 76e36b6901
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -5,7 +5,7 @@ const keyMap = {
TOGGLE_PLAY: { name: 'toggle_play', sequence: 'space', group: 'Player' },
PREV_SONG: { name: 'prev_song', sequence: 'left', group: 'Player' },
NEXT_SONG: { name: 'next_song', sequence: 'right', group: 'Player' },
CURRENT_SONG: { name: 'current_song', sequence: 'c', group: 'Player' },
CURRENT_SONG: { name: 'current_song', sequence: 'shift+c', group: 'Player' },
VOL_UP: { name: 'vol_up', sequence: '=', group: 'Player' },
VOL_DOWN: { name: 'vol_down', sequence: '-', group: 'Player' },
...(config.enableFavourites && {