Skip to content

Commit

Permalink
fix: Fader resolution increased to 1/1000 so delay on Midas could be …
Browse files Browse the repository at this point in the history
…handled
  • Loading branch information
olzzon committed Mar 15, 2021
1 parent 9c4f611 commit c8272dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/components/ChanStrip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class ChanStrip extends React.PureComponent<
invert
min={0}
max={1}
step={0.01}
step={0.001}
value={
this.props.fader[this.props.faderIndex][fxParam]?.[0] ??
0
Expand Down
2 changes: 1 addition & 1 deletion client/components/ChanStripFull.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ class ChanStripFull extends React.PureComponent<
orientation="vertical"
min={0}
max={1}
step={0.01}
step={0.001}
invert="false"
value={
this.props.fader[this.props.faderIndex][fxParam]?.[0] ??
Expand Down

0 comments on commit c8272dc

Please sign in to comment.