Do not shadow Colour in TwoLayerButton

Renames Colour to BackgroundColour instead.
This commit is contained in:
Thomas Müller
2017-02-23 22:33:37 +01:00
parent 9e8fb698c6
commit 0264c44a20
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ namespace osu.Game.Graphics.UserInterface
private void load(AudioManager audio, OsuColour colours)
{
ActivationSound = audio.Sample.Get(@"Menu/menuback");
Colour = colours.Pink;
BackgroundColour = colours.Pink;
HoverColour = colours.PinkDark;
}
}