mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 00:09:55 +09:00
Fix remaining issues
This commit is contained in:
@ -154,12 +154,10 @@ namespace osu.Game.Graphics.UserInterface
|
||||
}
|
||||
|
||||
private Color4 buttonColour;
|
||||
|
||||
public Color4 ButtonColour
|
||||
{
|
||||
get
|
||||
{
|
||||
return buttonColour;
|
||||
}
|
||||
get { return buttonColour; }
|
||||
set
|
||||
{
|
||||
buttonColour = value;
|
||||
@ -169,12 +167,10 @@ namespace osu.Game.Graphics.UserInterface
|
||||
}
|
||||
|
||||
private Color4 backgroundColour = OsuColour.Gray(34);
|
||||
|
||||
public Color4 BackgroundColour
|
||||
{
|
||||
get
|
||||
{
|
||||
return backgroundColour;
|
||||
}
|
||||
get { return backgroundColour; }
|
||||
set
|
||||
{
|
||||
backgroundColour = value;
|
||||
@ -183,12 +179,10 @@ namespace osu.Game.Graphics.UserInterface
|
||||
}
|
||||
|
||||
private string text;
|
||||
|
||||
public string Text
|
||||
{
|
||||
get
|
||||
{
|
||||
return text;
|
||||
}
|
||||
get { return text; }
|
||||
set
|
||||
{
|
||||
text = value;
|
||||
|
Reference in New Issue
Block a user