diff --git a/actions.js b/actions.js index 894a2c2..e0a9ebb 100644 --- a/actions.js +++ b/actions.js @@ -61,7 +61,7 @@ export function compileActionDefinitions(self) { * @returns {Integer} */ const setToggle = (oldVal, opt) => { - const o = parsetInt(opt) + const o = parseInt(+opt) return 2 === o ? 1 - parseInt(oldVal) : o } @@ -90,7 +90,8 @@ export function compileActionDefinitions(self) { }, }, new_Go: { - name: 'Go (Cue)', + name: 'Go Cue(s)', + description: 'GO with options', options: [ { type: 'dropdown', @@ -139,6 +140,7 @@ export function compileActionDefinitions(self) { }, new_auditGo: { name: 'Audition Cue(s)', + description: 'QLab5 only', options: [ { type: 'dropdown', diff --git a/package.json b/package.json index b682bc1..168b65e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "figure53-qlab-advance", - "version": "2.5.1", + "version": "2.5.2", "main": "qlabfb.js", "type": "module", "scripts": { diff --git a/qlabfb.js b/qlabfb.js index 174e9f2..334bd4a 100644 --- a/qlabfb.js +++ b/qlabfb.js @@ -1110,12 +1110,6 @@ class QLabInstance extends InstanceBase { this.checkFeedbacks('ws_mode') } break - case 'showMode': - if (this.showMode != j.data) { - this.showMode = j.data - this.checkFeedbacks('ws_mode') - } - break case 'liveFadePreview': if (this.liveFadePreview != j.data) { this.liveFadePreview = j.data