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>
|
yield return new SettingsSlider<float>
|
||||||
{
|
{
|
||||||
LabelText = attr.Label,
|
LabelText = attr.Label,
|
||||||
Bindable = bNumber
|
Bindable = bNumber,
|
||||||
|
KeyboardStep = 0.1f,
|
||||||
};
|
};
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@ -54,7 +55,8 @@ namespace osu.Game.Configuration
|
|||||||
yield return new SettingsSlider<double>
|
yield return new SettingsSlider<double>
|
||||||
{
|
{
|
||||||
LabelText = attr.Label,
|
LabelText = attr.Label,
|
||||||
Bindable = bNumber
|
Bindable = bNumber,
|
||||||
|
KeyboardStep = 0.1f,
|
||||||
};
|
};
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user