1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Set a sane default keyboard step for mod settings

This commit is contained in:
Dean Herbert 2020-02-06 19:43:33 +09:00
parent 27f2ee9cb4
commit 1613198834

View File

@ -45,7 +45,8 @@ namespace osu.Game.Configuration
yield return new SettingsSlider<float>
{
LabelText = attr.Label,
Bindable = bNumber
Bindable = bNumber,
KeyboardStep = 0.1f,
};
break;
@ -54,7 +55,8 @@ namespace osu.Game.Configuration
yield return new SettingsSlider<double>
{
LabelText = attr.Label,
Bindable = bNumber
Bindable = bNumber,
KeyboardStep = 0.1f,
};
break;