Fix remaining issues

This commit is contained in:
Dean Herbert
2019-02-28 13:31:40 +09:00
parent 3e1f283281
commit 26d53d06a9
241 changed files with 673 additions and 330 deletions

View File

@ -72,6 +72,7 @@ namespace osu.Game.Graphics.UserInterface
}
private bool glowing;
public bool Glowing
{
get { return glowing; }
@ -94,10 +95,7 @@ namespace osu.Game.Graphics.UserInterface
public bool Expanded
{
set
{
this.ResizeTo(new Vector2(value ? EXPANDED_SIZE : COLLAPSED_SIZE, 12), 500, Easing.OutQuint);
}
set { this.ResizeTo(new Vector2(value ? EXPANDED_SIZE : COLLAPSED_SIZE, 12), 500, Easing.OutQuint); }
}
private readonly Bindable<bool> current = new Bindable<bool>();
@ -116,6 +114,7 @@ namespace osu.Game.Graphics.UserInterface
}
private Color4 accentColour;
public Color4 AccentColour
{
get { return accentColour; }
@ -128,6 +127,7 @@ namespace osu.Game.Graphics.UserInterface
}
private Color4 glowingAccentColour;
public Color4 GlowingAccentColour
{
get { return glowingAccentColour; }
@ -140,6 +140,7 @@ namespace osu.Game.Graphics.UserInterface
}
private Color4 glowColour;
public Color4 GlowColour
{
get { return glowColour; }