diff options
-rw-r--r-- | ui.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui.js b/ui.js index 3e6cdf6..35bbec9 100644 --- a/ui.js +++ b/ui.js @@ -974,7 +974,8 @@ class GrouplikeItemElement extends Button { items: [ {label: 'Play', action: () => this.emit('play')}, {label: 'Play next', action: () => this.emit('queue (play next)')}, - {label: 'Play at end', action: () => this.emit('queue (at end)')} + {label: 'Play at end', action: () => this.emit('queue (at end)')}, + {label: 'Play at end, shuffled', action: () => this.emit('queue (shuffled)')} ] }) } |