mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Set a sane default keyboard step for mod settings
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user