mirror of
https://github.com/ppy/osu
synced 2024-12-27 09:23:15 +00:00
Move non-matching default value to argon skin default speficiation instead
This commit is contained in:
parent
39a3313929
commit
73eda6c09c
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user