Skip to content

Commit

Permalink
fix: disable softtakeover for crossfader
Browse files Browse the repository at this point in the history
This avoids an issue where it could get detached when moved quickly.
This can happen often on this controller due to the cheap built
quality of the faders, resulting in low-resolution data that is
larger than the softtakeover treshold.
  • Loading branch information
Swiftb0y committed Jan 3, 2025
1 parent 4df4f3c commit 5320d02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion res/controllers/Reloop-Ready-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ class ReloopReady {
this.components.crossfader = new components.Pot({
midi: [0xBE, 0x08],
group: "[Master]",
inKey: "crossfader"
inKey: "crossfader",
softTakeover: false, // see volume faders
});

this.components.masterVol = new components.Pot({
Expand Down

0 comments on commit 5320d02

Please sign in to comment.