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

change settings order

This commit is contained in:
mk56-spn 2022-12-12 15:10:45 +01:00
parent 8efe7528e3
commit 99d83315c1

View File

@ -18,6 +18,9 @@ namespace osu.Game.Screens.Play.HUD.JudgementCounter
{
public bool UsesFixedAnchor { get; set; }
[SettingSource("Display mode")]
public Bindable<DisplayMode> Mode { get; set; } = new Bindable<DisplayMode>();
[SettingSource("Counter direction")]
public Bindable<Flow> FlowDirection { get; set; } = new Bindable<Flow>();
@ -27,9 +30,6 @@ namespace osu.Game.Screens.Play.HUD.JudgementCounter
[SettingSource("Show max judgement")]
public BindableBool ShowMax { get; set; } = new BindableBool(true);
[SettingSource("Display mode")]
public Bindable<DisplayMode> Mode { get; set; } = new Bindable<DisplayMode>();
[Resolved]
private JudgementTally tally { get; set; } = null!;