From 3bb01fd59583939aa46e5e8e18189375cc222d24 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 21 Mar 2022 14:41:57 +0900 Subject: [PATCH] Fix close button animation not being applied correct on mouse down due to conflicting scales --- .../Overlays/Chat/ChannelList/ChannelListItemCloseButton.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Chat/ChannelList/ChannelListItemCloseButton.cs b/osu.Game/Overlays/Chat/ChannelList/ChannelListItemCloseButton.cs index a5876c8ad8..65b9c4a79b 100644 --- a/osu.Game/Overlays/Chat/ChannelList/ChannelListItemCloseButton.cs +++ b/osu.Game/Overlays/Chat/ChannelList/ChannelListItemCloseButton.cs @@ -33,7 +33,7 @@ namespace osu.Game.Overlays.Chat.ChannelList { Anchor = Anchor.Centre, Origin = Anchor.Centre, - Scale = new Vector2(0.75f), + Size = new Vector2(0.75f), Icon = FontAwesome.Solid.TimesCircle, RelativeSizeAxes = Axes.Both, Colour = normalColour,