mirror of
https://github.com/osukey/osukey.git
synced 2025-05-21 21:47:31 +09:00
Rename DrawableChat to DrawableChannel
This commit is contained in:
parent
1f04dd9ada
commit
709d134f49
@ -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 =>
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user