diff --git a/src/reducers/fadersReducer.ts b/src/reducers/fadersReducer.ts index 37fc86b4..8398256e 100644 --- a/src/reducers/fadersReducer.ts +++ b/src/reducers/fadersReducer.ts @@ -30,7 +30,7 @@ const defaultFadersReducerState = (numberOfFaders: number) => { for (let index=0; index < numberOfFaders; index++) { defaultObj[0].fader[index] = ({ - faderLevel: 0, + faderLevel: 0.75, label: "", pgmOn: false, voOn: false, diff --git a/src/utils/AutomationConnection.ts b/src/utils/AutomationConnection.ts index 1a8216f7..826073a6 100644 --- a/src/utils/AutomationConnection.ts +++ b/src/utils/AutomationConnection.ts @@ -90,7 +90,7 @@ export class AutomationConnection { pstOn: false }); } - window.mixerGenericConnection.updateOutLevel(ch-1); + window.mixerGenericConnection.updateNextAux(ch-1); } else if ( this.checkOscCommand(message.address, this.automationProtocol.fromAutomation .CHANNEL_FADER_LEVEL)){ let ch = message.address.split("/")[2];