mirror of
https://github.com/ppy/osu.git
synced 2026-05-27 05:09:58 +08:00
Move non-matching default value to argon skin default speficiation instead
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user