Skip to content

Commit

Permalink
fix: Set fader label
Browse files Browse the repository at this point in the history
  • Loading branch information
eol-account committed Mar 18, 2021
1 parent 4e18a2a commit 78a3ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/sisyfos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export class SisyfosMessageDevice extends DeviceWithState<SisyfosState> implemen
}

if (newChannel.faderLevel !== undefined) channel.faderLevel = newChannel.faderLevel
if (newChannel.label !== undefined) channel.label = newChannel.label
if (newChannel.label !== undefined && newChannel.label !== '') channel.label = newChannel.label
if (newChannel.visible !== undefined) channel.visible = newChannel.visible

channel.tlObjIds.push(newChannel.tlObjId)
Expand Down

0 comments on commit 78a3ecd

Please sign in to comment.