Move hold-to-confirm back to UI section

This commit is contained in:
Dean Herbert 2020-11-30 16:15:35 +09:00
parent 55c8aa5d5f
commit 4e1e45f3e7
2 changed files with 12 additions and 12 deletions

View File

@ -5,7 +5,6 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Overlays.Settings.Sections.Gameplay
@ -64,12 +63,6 @@ private void load(OsuConfigManager config)
LabelText = "Always show key overlay",
Current = config.GetBindable<bool>(OsuSetting.KeyOverlay)
},
new SettingsSlider<float, TimeSlider>
{
LabelText = "Hold-to-confirm activation time",
Current = config.GetBindable<float>(OsuSetting.UIHoldActivationDelay),
KeyboardStep = 50
},
new SettingsCheckbox
{
LabelText = "Positional hitsounds",
@ -102,10 +95,5 @@ private void load(OsuConfigManager config)
});
}
}
private class TimeSlider : OsuSliderBar<float>
{
public override string TooltipText => Current.Value.ToString("N0") + "ms";
}
}
}

View File

@ -4,6 +4,7 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings.Sections.UserInterface
{
@ -32,7 +33,18 @@ private void load(OsuConfigManager config)
LabelText = "Parallax",
Current = config.GetBindable<bool>(OsuSetting.MenuParallax)
},
new SettingsSlider<float, TimeSlider>
{
LabelText = "Hold-to-confirm activation time",
Current = config.GetBindable<float>(OsuSetting.UIHoldActivationDelay),
KeyboardStep = 50
},
};
}
private class TimeSlider : OsuSliderBar<float>
{
public override string TooltipText => Current.Value.ToString("N0") + "ms";
}
}
}