1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00

Fix flash background naming

This commit is contained in:
Joehu 2020-06-14 22:16:17 -07:00
parent b41567c66c
commit 941fdf5e76

View File

@ -62,7 +62,7 @@ namespace osu.Game.Overlays.Toolbar
protected ConstrainedIconContainer IconContainer;
protected SpriteText DrawableText;
protected Box HoverBackground;
private readonly Box FlashBackground;
private readonly Box flashBackground;
private readonly FillFlowContainer tooltipContainer;
private readonly SpriteText tooltip1;
private readonly SpriteText tooltip2;
@ -83,7 +83,7 @@ namespace osu.Game.Overlays.Toolbar
Blending = BlendingParameters.Additive,
Alpha = 0,
},
FlashBackground = new Box
flashBackground = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Transparent,
@ -146,7 +146,7 @@ namespace osu.Game.Overlays.Toolbar
protected override bool OnClick(ClickEvent e)
{
FlashBackground.FlashColour(Color4.White.Opacity(100), 500, Easing.OutQuint);
flashBackground.FlashColour(Color4.White.Opacity(100), 500, Easing.OutQuint);
tooltipContainer.FadeOut(100);
return base.OnClick(e);
}