Move tab channel class into tab item class

This commit is contained in:
Paul Teng
2019-05-12 06:31:11 -04:00
parent 8957ad5a7e
commit 7adaa09263
5 changed files with 12 additions and 19 deletions

View File

@ -87,7 +87,7 @@ namespace osu.Game.Online.Chat
private void currentChannelChanged(ValueChangedEvent<Channel> e)
{
if (!(e.NewValue is ChannelSelectorTabChannel))
if (!(e.NewValue is ChannelSelectorTabItem.ChannelSelectorTabChannel))
JoinChannel(e.NewValue);
}