Rename dummy channel and move to a nested class inside the ChannelListing itself

This commit is contained in:
Dean Herbert
2022-05-19 19:26:14 +09:00
parent 63c9776365
commit 136ecb45e2
7 changed files with 20 additions and 17 deletions

View File

@ -13,6 +13,7 @@ using osu.Game.Online.API.Requests.Responses;
using osu.Game.Online.Chat;
using osu.Game.Overlays;
using osu.Game.Overlays.Chat.ChannelList;
using osu.Game.Overlays.Chat.Listing;
namespace osu.Game.Tests.Visual.Online
{
@ -147,7 +148,7 @@ namespace osu.Game.Tests.Visual.Online
});
}
private bool validItem => selected.Value != null && !(selected.Value is DummySelectorChannel);
private bool validItem => selected.Value != null && !(selected.Value is ChannelListing.ChannelListingChannel);
private Channel createRandomPublicChannel()
{