Use Shift+Left/Right to switch video chapters

This commit is contained in:
Rafał Dzięgiel
2021-04-22 14:40:21 +02:00
parent edfa85b5cc
commit bd13a3c15a
2 changed files with 42 additions and 0 deletions

View File

@@ -22,5 +22,13 @@ var actions = {
prev_track: {
run: (window) => window.child.player.playlistWidget.prevTrack(),
accels: ['<Ctrl>Left'],
},
next_chapter: {
run: (window) => window.child.player.next_chapter(),
accels: ['<Shift>Right'],
},
prev_chapter: {
run: (window) => window.child.player.prev_chapter(),
accels: ['<Shift>Left'],
}
};