mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 22:06:08 +08:00
add some spaces after commas
This commit is contained in:
parent
7ef90e6597
commit
a6ea6738e5
@ -16,7 +16,7 @@ namespace osu.Game.Overlays.Options
|
||||
{
|
||||
}
|
||||
|
||||
public class OptionSlider<T,U> : FillFlowContainer where T : struct where U : SliderBar<T>, new()
|
||||
public class OptionSlider<T, U> : FillFlowContainer where T : struct where U : SliderBar<T>, new()
|
||||
{
|
||||
private readonly SliderBar<T> slider;
|
||||
private readonly SpriteText text;
|
||||
|
@ -17,7 +17,7 @@ namespace osu.Game.Overlays.Options.Sections.Audio
|
||||
{
|
||||
Children = new Drawable[]
|
||||
{
|
||||
new OptionSlider<double,OffsetSlider>
|
||||
new OptionSlider<double, OffsetSlider>
|
||||
{
|
||||
LabelText = "Audio Offset",
|
||||
Bindable = config.GetBindable<double>(OsuConfig.AudioOffset)
|
||||
|
@ -17,12 +17,12 @@ namespace osu.Game.Overlays.Options.Sections.Gameplay
|
||||
{
|
||||
Children = new Drawable[]
|
||||
{
|
||||
new OptionSlider<double,StarSlider>
|
||||
new OptionSlider<double, StarSlider>
|
||||
{
|
||||
LabelText = "Display beatmaps from",
|
||||
Bindable = config.GetBindable<double>(OsuConfig.DisplayStarsMinimum)
|
||||
},
|
||||
new OptionSlider<double,StarSlider>
|
||||
new OptionSlider<double, StarSlider>
|
||||
{
|
||||
LabelText = "up to",
|
||||
Bindable = config.GetBindable<double>(OsuConfig.DisplayStarsMaximum)
|
||||
|
@ -17,7 +17,7 @@ namespace osu.Game.Overlays.Options.Sections.Input
|
||||
{
|
||||
Children = new Drawable[]
|
||||
{
|
||||
new OptionSlider<double,SensitivitySlider>
|
||||
new OptionSlider<double, SensitivitySlider>
|
||||
{
|
||||
LabelText = "Sensitivity",
|
||||
Bindable = config.GetBindable<double>(OsuConfig.MouseSpeed)
|
||||
|
@ -58,12 +58,12 @@ namespace osu.Game.Overlays.Options.Sections
|
||||
LabelText = "Always use skin cursor",
|
||||
Bindable = config.GetBindable<bool>(OsuConfig.UseSkinCursor)
|
||||
},
|
||||
new OptionSlider<double,SizeSlider>
|
||||
new OptionSlider<double, SizeSlider>
|
||||
{
|
||||
LabelText = "Menu cursor size",
|
||||
Bindable = config.GetBindable<double>(OsuConfig.MenuCursorSize)
|
||||
},
|
||||
new OptionSlider<double,SizeSlider>
|
||||
new OptionSlider<double, SizeSlider>
|
||||
{
|
||||
LabelText = "Gameplay cursor size",
|
||||
Bindable = config.GetBindable<double>(OsuConfig.GameplayCursorSize)
|
||||
|
Loading…
Reference in New Issue
Block a user