1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 17:27:48 +08:00

Fix scroll speed slider defaulting to 0.01

This commit is contained in:
Bruno Heredia 2024-09-07 01:42:47 -03:00
parent 04d133832f
commit 3b81ad4cbf
No known key found for this signature in database
GPG Key ID: 39F80710EF82E63B

View File

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