1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 13:23:03 +08:00

Move setting up to be in line with other toggle

This commit is contained in:
Dean Herbert 2023-01-10 18:07:15 +09:00
parent 63ce5787e7
commit 3c93d0551c

View File

@ -33,6 +33,9 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
Precision = 0.1f,
};
[SettingSource("Show colour bars")]
public Bindable<bool> ColourBarVisibility { get; } = new Bindable<bool>(true);
[SettingSource("Show moving average arrow", "Whether an arrow should move beneath the bar showing the average error.")]
public Bindable<bool> ShowMovingAverage { get; } = new BindableBool(true);
@ -42,9 +45,6 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
[SettingSource("Label style", "How to show early/late extremities")]
public Bindable<LabelStyles> LabelStyle { get; } = new Bindable<LabelStyles>(LabelStyles.Icons);
[SettingSource("Show colour bars")]
public Bindable<bool> ColourBarVisibility { get; } = new Bindable<bool>(true);
private const int judgement_line_width = 14;
private const int max_concurrent_judgements = 50;