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

make AppVeyor happy again

This commit is contained in:
Jorolf 2017-04-02 18:31:19 +02:00
parent 679829daae
commit 8bc241da3d

View File

@ -15,7 +15,6 @@ namespace osu.Game.Graphics.UserInterface
{ {
public class Tooltip : Container public class Tooltip : Container
{ {
private readonly Container actualTooltip;
private readonly Box tooltipBackground; private readonly Box tooltipBackground;
private readonly OsuSpriteText text; private readonly OsuSpriteText text;
@ -38,7 +37,7 @@ namespace osu.Game.Graphics.UserInterface
AlwaysReceiveInput = true; AlwaysReceiveInput = true;
Children = new[] Children = new[]
{ {
actualTooltip = new Container new Container
{ {
AutoSizeAxes = Axes.Both, AutoSizeAxes = Axes.Both,
CornerRadius = 5, CornerRadius = 5,
@ -67,7 +66,7 @@ namespace osu.Game.Graphics.UserInterface
} }
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load(OsuColour colour, OsuGameBase game) private void load(OsuColour colour)
{ {
tooltipBackground.Colour = colour.Gray3; tooltipBackground.Colour = colour.Gray3;
} }