Rename DrawableChat to DrawableChannel

This commit is contained in:
miterosan 2018-07-09 18:23:40 +02:00
parent 1f04dd9ada
commit 709d134f49
2 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@ namespace osu.Game.Overlays
private ChannelManager channelManager; private ChannelManager channelManager;
private readonly Container<DrawableChat> currentChatContainer; private readonly Container<DrawableChannel> currentChatContainer;
private readonly List<DrawableChat> loadedChannels = new List<DrawableChat>(); private readonly List<DrawableChannel> loadedChannels = new List<DrawableChannel>();
private readonly LoadingAnimation loading; private readonly LoadingAnimation loading;
@ -101,7 +101,7 @@ namespace osu.Game.Overlays
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
}, },
currentChatContainer = new Container<DrawableChat> currentChatContainer = new Container<DrawableChannel>
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding Padding = new MarginPadding
@ -240,7 +240,7 @@ namespace osu.Game.Overlays
currentChatContainer.FadeOut(500, Easing.OutQuint); currentChatContainer.FadeOut(500, Easing.OutQuint);
loading.Show(); loading.Show();
loaded = new DrawableChat(chat); loaded = new DrawableChannel(chat);
loadedChannels.Add(loaded); loadedChannels.Add(loaded);
LoadComponentAsync(loaded, l => LoadComponentAsync(loaded, l =>
{ {