add some spaces after commas

This commit is contained in:
Jorolf 2017-04-24 17:10:00 +02:00
parent 7ef90e6597
commit a6ea6738e5
5 changed files with 7 additions and 7 deletions

View File

@ -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 SliderBar<T> slider;
private readonly SpriteText text; private readonly SpriteText text;

View File

@ -17,7 +17,7 @@ namespace osu.Game.Overlays.Options.Sections.Audio
{ {
Children = new Drawable[] Children = new Drawable[]
{ {
new OptionSlider<double,OffsetSlider> new OptionSlider<double, OffsetSlider>
{ {
LabelText = "Audio Offset", LabelText = "Audio Offset",
Bindable = config.GetBindable<double>(OsuConfig.AudioOffset) Bindable = config.GetBindable<double>(OsuConfig.AudioOffset)

View File

@ -17,12 +17,12 @@ namespace osu.Game.Overlays.Options.Sections.Gameplay
{ {
Children = new Drawable[] Children = new Drawable[]
{ {
new OptionSlider<double,StarSlider> new OptionSlider<double, StarSlider>
{ {
LabelText = "Display beatmaps from", LabelText = "Display beatmaps from",
Bindable = config.GetBindable<double>(OsuConfig.DisplayStarsMinimum) Bindable = config.GetBindable<double>(OsuConfig.DisplayStarsMinimum)
}, },
new OptionSlider<double,StarSlider> new OptionSlider<double, StarSlider>
{ {
LabelText = "up to", LabelText = "up to",
Bindable = config.GetBindable<double>(OsuConfig.DisplayStarsMaximum) Bindable = config.GetBindable<double>(OsuConfig.DisplayStarsMaximum)

View File

@ -17,7 +17,7 @@ namespace osu.Game.Overlays.Options.Sections.Input
{ {
Children = new Drawable[] Children = new Drawable[]
{ {
new OptionSlider<double,SensitivitySlider> new OptionSlider<double, SensitivitySlider>
{ {
LabelText = "Sensitivity", LabelText = "Sensitivity",
Bindable = config.GetBindable<double>(OsuConfig.MouseSpeed) Bindable = config.GetBindable<double>(OsuConfig.MouseSpeed)

View File

@ -58,12 +58,12 @@ namespace osu.Game.Overlays.Options.Sections
LabelText = "Always use skin cursor", LabelText = "Always use skin cursor",
Bindable = config.GetBindable<bool>(OsuConfig.UseSkinCursor) Bindable = config.GetBindable<bool>(OsuConfig.UseSkinCursor)
}, },
new OptionSlider<double,SizeSlider> new OptionSlider<double, SizeSlider>
{ {
LabelText = "Menu cursor size", LabelText = "Menu cursor size",
Bindable = config.GetBindable<double>(OsuConfig.MenuCursorSize) Bindable = config.GetBindable<double>(OsuConfig.MenuCursorSize)
}, },
new OptionSlider<double,SizeSlider> new OptionSlider<double, SizeSlider>
{ {
LabelText = "Gameplay cursor size", LabelText = "Gameplay cursor size",
Bindable = config.GetBindable<double>(OsuConfig.GameplayCursorSize) Bindable = config.GetBindable<double>(OsuConfig.GameplayCursorSize)