mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Merge pull request #7742 from peppy/mod-setting-keyboard-step
Set a sane default keyboard step for mod settings
This commit is contained in:
commit
b221a44fa9
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user