1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 14:32:55 +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 ConstrainedIconContainer IconContainer;
protected SpriteText DrawableText; protected SpriteText DrawableText;
protected Box HoverBackground; protected Box HoverBackground;
private readonly Box FlashBackground; private readonly Box flashBackground;
private readonly FillFlowContainer tooltipContainer; private readonly FillFlowContainer tooltipContainer;
private readonly SpriteText tooltip1; private readonly SpriteText tooltip1;
private readonly SpriteText tooltip2; private readonly SpriteText tooltip2;
@ -83,7 +83,7 @@ namespace osu.Game.Overlays.Toolbar
Blending = BlendingParameters.Additive, Blending = BlendingParameters.Additive,
Alpha = 0, Alpha = 0,
}, },
FlashBackground = new Box flashBackground = new Box
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Colour = Color4.Transparent, Colour = Color4.Transparent,
@ -146,7 +146,7 @@ namespace osu.Game.Overlays.Toolbar
protected override bool OnClick(ClickEvent e) 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); tooltipContainer.FadeOut(100);
return base.OnClick(e); return base.OnClick(e);
} }