« get me outta code hell

Play shuffled - mtui - Music Text User Interface - user-friendly command line music player
about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2018-07-25 14:01:13 -0300
committerFlorrie <towerofnix@gmail.com>2018-07-25 14:01:13 -0300
commita3ae3bf13be245ba2fe5156b7be57a30d304b215 (patch)
tree06ab76c289efffee3acd26699a392969e8b475c3
parentcc039d94b1a2f54007519c8bdd00b0a58e07bdc0 (diff)
Play shuffled
-rw-r--r--ui.js3
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)')}
         ]
       })
     }