Skip to content

Commit

Permalink
Merge pull request #29759 from Bruno5430/fix-default-effect-control-p…
Browse files Browse the repository at this point in the history
…oint

Fix scroll speed slider defaulting to 0.01
  • Loading branch information
smoogipoo authored Sep 7, 2024
2 parents 41d32ab + 3b81ad4 commit f1c024d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Screens/Edit/Timing/EffectSection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected override void OnControlPointChanged(ValueChangedEvent<EffectControlPoi
isRebinding = true;

kiai.Current = newEffectPoint.KiaiModeBindable;
scrollSpeedSlider.Current = new BindableDouble
scrollSpeedSlider.Current = new BindableDouble(1)
{
MinValue = 0.01,
MaxValue = 10,
Expand Down

0 comments on commit f1c024d

Please sign in to comment.