1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 03:22:55 +08:00

Fix styling error

This commit is contained in:
Shivam 2020-06-02 21:54:39 +02:00
parent b79773cdb1
commit 9cd66dcdef
2 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ namespace osu.Game.Screens.Menu
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Alpha = 0.5f,
isIntro = true,
IsIntro = true,
AccentColour = Color4.DarkBlue,
Size = new Vector2(0.96f)
},

View File

@ -70,7 +70,7 @@ namespace osu.Game.Screens.Menu
private IShader shader;
private readonly Texture texture;
public bool isIntro = false;
public bool IsIntro = false;
private Bindable<User> user;
private Bindable<Skin> skin;
@ -89,7 +89,7 @@ namespace osu.Game.Screens.Menu
user = api.LocalUser.GetBoundCopy();
skin = skinManager.CurrentSkin.GetBoundCopy();
if (!isIntro)
if (!IsIntro)
{
user.ValueChanged += _ => updateColour();
skin.BindValueChanged(_ => updateColour(), true);