Skip to content

Commit 631ef17

Browse files
committed
Merge pull request #520 from guswynn/fixedmacbranch
Fixed double-moving of queue when using the next and prev hotkeys on Mac
2 parents 48ff267 + 1f154d8 commit 631ef17

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
@@ -211,7 +211,7 @@ app.controller('PlayerCtrl', function ($scope, $rootScope, playerService, queueS
211211
});
212212

213213
hotkeys.add({
214-
combo: ['command+right', 'ctrl+right'],
214+
combo: 'ctrl+right',
215215
description: 'Next song',
216216
callback: function() {
217217
if ( $rootScope.isSongPlaying ) {
@@ -221,7 +221,7 @@ app.controller('PlayerCtrl', function ($scope, $rootScope, playerService, queueS
221221
});
222222

223223
hotkeys.add({
224-
combo: ['command+left', 'ctrl+left'],
224+
combo: 'ctrl+left',
225225
description: 'Prev song',
226226
callback: function() {
227227
if ( $rootScope.isSongPlaying ) {

0 commit comments

Comments
 (0)