mirror of
https://github.com/ppy/osu.git
synced 2024-12-17 04:32:53 +08:00
make AppVeyor happy again
This commit is contained in:
parent
679829daae
commit
8bc241da3d
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user