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
parent 75596a6b64
commit 5d8318f7b3
1 changed files with 1 additions and 1 deletions

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 && {