1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-05 22:42:54 +08:00

Merge pull request #29759 from Bruno5430/fix-default-effect-control-point

Fix scroll speed slider defaulting to 0.01
This commit is contained in:
Dan Balasescu 2024-09-07 17:36:59 +09:00 committed by GitHub
commit f1c024d3f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,7 +56,7 @@ namespace osu.Game.Screens.Edit.Timing
isRebinding = true; isRebinding = true;
kiai.Current = newEffectPoint.KiaiModeBindable; kiai.Current = newEffectPoint.KiaiModeBindable;
scrollSpeedSlider.Current = new BindableDouble scrollSpeedSlider.Current = new BindableDouble(1)
{ {
MinValue = 0.01, MinValue = 0.01,
MaxValue = 10, MaxValue = 10,