mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 00:11:59 +02:00
Use Ctrl+Left/Right to switch playlist items. Closes #63
This commit is contained in:
@@ -14,5 +14,13 @@ var actions = {
|
||||
},
|
||||
about: {
|
||||
run: (window) => new Dialogs.AboutDialog(window),
|
||||
},
|
||||
next_track: {
|
||||
run: (window) => window.child.player.playlistWidget.nextTrack(),
|
||||
accels: ['<Ctrl>Right'],
|
||||
},
|
||||
prev_track: {
|
||||
run: (window) => window.child.player.playlistWidget.prevTrack(),
|
||||
accels: ['<Ctrl>Left'],
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user