1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Only update tablet values on commit

This commit is contained in:
Dean Herbert 2021-03-17 13:23:23 +09:00
parent 6285dcd1a1
commit c624aa9397

View File

@ -104,16 +104,19 @@ namespace osu.Game.Overlays.Settings.Sections.Input
},
new SettingsSlider<float>
{
TransferValueOnCommit = true,
LabelText = "Aspect Ratio",
Current = aspectRatio
},
new SettingsSlider<float>
{
TransferValueOnCommit = true,
LabelText = "X Offset",
Current = offsetX
},
new SettingsSlider<float>
{
TransferValueOnCommit = true,
LabelText = "Y Offset",
Current = offsetY
},
@ -124,11 +127,13 @@ namespace osu.Game.Overlays.Settings.Sections.Input
},
new SettingsSlider<float>
{
TransferValueOnCommit = true,
LabelText = "Width",
Current = sizeX
},
new SettingsSlider<float>
{
TransferValueOnCommit = true,
LabelText = "Height",
Current = sizeY
},