1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 17:50:34 +08:00

Move non-matching default value to argon skin default speficiation instead

This commit is contained in:
Dean Herbert
2023-11-16 14:18:49 +09:00
Unverified
parent 39a3313929
commit 73eda6c09c
2 changed files with 5 additions and 2 deletions
@@ -27,7 +27,7 @@ namespace osu.Game.Screens.Play.HUD
};
[SettingSource(typeof(SkinnableComponentStrings), nameof(SkinnableComponentStrings.ShowLabel), nameof(SkinnableComponentStrings.ShowLabelDescription))]
public Bindable<bool> ShowLabel { get; } = new BindableBool();
public Bindable<bool> ShowLabel { get; } = new BindableBool(true);
public bool UsesFixedAnchor { get; set; }
+4 -1
View File
@@ -214,7 +214,10 @@ namespace osu.Game.Skinning
Size = new Vector2(380, 72),
Position = new Vector2(4, 5)
},
new ArgonScoreCounter(),
new ArgonScoreCounter
{
ShowLabel = { Value = false },
},
new ArgonHealthDisplay(),
new BoxElement
{