1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Fix incorrect indent size

This commit is contained in:
Bartłomiej Dach 2022-05-29 18:56:37 +02:00
parent f9f8a32380
commit e69f8716cd
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -27,9 +27,9 @@ namespace osu.Game.Overlays.Chat.ChannelList
public Action<Channel>? OnRequestLeave;
public IEnumerable<Channel> Channels => groupFlow.Children.Where(child => child is ChannelGroup)
.Cast<ChannelGroup>()
.SelectMany(channelGroup => channelGroup.ItemFlow)
.Select(item => item.Channel);
.Cast<ChannelGroup>()
.SelectMany(channelGroup => channelGroup.ItemFlow)
.Select(item => item.Channel);
public readonly ChannelListing.ChannelListingChannel ChannelListingChannel = new ChannelListing.ChannelListingChannel();