Fix remaining issues

This commit is contained in:
Dean Herbert
2019-02-28 13:31:40 +09:00
parent 3e1f283281
commit 26d53d06a9
241 changed files with 673 additions and 330 deletions

View File

@ -84,7 +84,7 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
AutoSizeDuration = transition_duration,
AutoSizeEasing = Easing.OutQuint,
Masking = true,
Children = new []
Children = new[]
{
new SettingsSlider<float>
{
@ -171,6 +171,7 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
}
private Drawable preview;
private void showPreview()
{
if (preview?.IsAlive != true)
@ -225,6 +226,7 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
{
if (item == new Size(9999, 9999))
return "Default";
return $"{item.Width}x{item.Height}";
}
}