diff options
author | (quasar) nebula <towerofnix@gmail.com> | 2021-02-25 11:51:34 -0400 |
---|---|---|
committer | (quasar) nebula <towerofnix@gmail.com> | 2021-02-25 11:51:34 -0400 |
commit | 9ab44f1d8c0986986ac5d5df102d69aa21040f39 (patch) | |
tree | b077dde85759ab0daee31047622310c73849e7bb | |
parent | 942c36453fc9317056791acade02067f01c1464d (diff) |
loop queue "when it ends" is unnecessary lol
-rw-r--r-- | ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.js b/ui.js index 5a8e0ad..5e9e6f9 100644 --- a/ui.js +++ b/ui.js @@ -399,7 +399,7 @@ class AppElement extends FocusElement { getEnabled: () => this.config.canControlPlayback }) - this.loopQueueControl = new ToggleControl('Loop queue when it ends?', { + this.loopQueueControl = new ToggleControl('Loop queue?', { setValue: val => this.SQP.setLoopQueueAtEnd(val), getValue: () => this.SQP.loopQueueAtEnd, getEnabled: () => this.config.canControlPlayback |