1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Size -> scale

This commit is contained in:
Dean Herbert 2019-01-04 14:58:44 +09:00
parent 35a6257642
commit 9c7830d83b

View File

@ -75,7 +75,6 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
AutoSizeDuration = transition_duration,
AutoSizeEasing = Easing.OutQuint,
Masking = true,
Children = new Drawable[]
{
new SettingsSlider<float>
@ -92,13 +91,13 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
},
new SettingsSlider<float>
{
LabelText = "Horizontal size",
LabelText = "Horizontal scale",
Bindable = delayedBindable(scalingSizeX),
KeyboardStep = 0.01f
},
new SettingsSlider<float>
{
LabelText = "Vertical size",
LabelText = "Vertical scale",
Bindable = delayedBindable(scalingSizeY),
KeyboardStep = 0.01f
},