Skip to content

Commit

Permalink
fix: Automation PST command must update NextAux
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Oct 12, 2019
1 parent 838587b commit f635362
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/reducers/fadersReducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/utils/AutomationConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit f635362

Please sign in to comment.