Rename UserTabItem to UserChannelTabItem

This commit is contained in:
miterosan
2018-07-09 19:48:05 +02:00
parent 1589b65494
commit 0c62726fd7
2 changed files with 4 additions and 4 deletions

View File

@ -59,7 +59,7 @@ namespace osu.Game.Overlays.Chat.Tabs
case TargetType.Channel:
return new ChannelTabItem(value) { OnRequestClose = tabCloseRequested };
case TargetType.User:
return new UserTabItem(value) { OnRequestClose = tabCloseRequested };
return new UserChannelTabItem(value) { OnRequestClose = tabCloseRequested };
default:
throw new InvalidOperationException("Only TargetType User and Channel are supported.");
}