diff options
author | Florrie <towerofnix@gmail.com> | 2018-07-25 14:01:13 -0300 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2018-07-25 14:01:13 -0300 |
commit | a3ae3bf13be245ba2fe5156b7be57a30d304b215 (patch) | |
tree | 06ab76c289efffee3acd26699a392969e8b475c3 | |
parent | cc039d94b1a2f54007519c8bdd00b0a58e07bdc0 (diff) |
Play shuffled
-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)')} ] }) } |