Skip to content

Commit

Permalink
Fix "Legacy" mode (#4815)
Browse files Browse the repository at this point in the history
"Legacy" mode was slow * moverate, not just moverate.

Closes #4810
  • Loading branch information
baconpaul authored Aug 8, 2021
1 parent faf520c commit 1aff5b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/widgets/ModulatableSlider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ void ModulatableSlider::mouseDrag(const juce::MouseEvent &event)
break;
case kLegacy:
default:
dMouse *= legacyMoveRate;
dMouse *= 0.3 * legacyMoveRate;
break;
}

Expand Down

0 comments on commit 1aff5b8

Please sign in to comment.