From f3702fbefbb9f42041d68c7d73d8a63a33f61d94 Mon Sep 17 00:00:00 2001 From: Jai Sharma Date: Sat, 19 Mar 2022 22:20:17 +0000 Subject: [PATCH] Pass correct params to `UpdateableAvatar` ctor in `ChannelListItem` --- osu.Game/Overlays/Chat/ChannelList/ChannelListItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Chat/ChannelList/ChannelListItem.cs b/osu.Game/Overlays/Chat/ChannelList/ChannelListItem.cs index 247b04688c..583493181b 100644 --- a/osu.Game/Overlays/Chat/ChannelList/ChannelListItem.cs +++ b/osu.Game/Overlays/Chat/ChannelList/ChannelListItem.cs @@ -157,7 +157,7 @@ namespace osu.Game.Overlays.Chat.ChannelList if (channel.Type != ChannelType.PM) return Drawable.Empty(); - return new UpdateableAvatar(channel.Users.First(), false, false, true) + return new UpdateableAvatar(channel.Users.First(), isInteractive: false) { Size = new Vector2(20), Margin = new MarginPadding { Right = 5 },