Skip to content

Commit 1f154d8

Browse files
committed
Fixed double-moving of queue when using the next and prev hotkeys on Mac
1 parent 2eb01ff commit 1f154d8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/public/js/player/playerCtrl.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ app.controller('PlayerCtrl', function ($scope, $rootScope, playerService, queueS
203203
});
204204

205205
hotkeys.add({
206-
combo: ['command+right', 'ctrl+right'],
206+
combo: 'ctrl+right',
207207
description: 'Next song',
208208
callback: function() {
209209
if ( $rootScope.isSongPlaying ) {
@@ -213,7 +213,7 @@ app.controller('PlayerCtrl', function ($scope, $rootScope, playerService, queueS
213213
});
214214

215215
hotkeys.add({
216-
combo: ['command+left', 'ctrl+left'],
216+
combo: 'ctrl+left',
217217
description: 'Prev song',
218218
callback: function() {
219219
if ( $rootScope.isSongPlaying ) {

0 commit comments

Comments
 (0)