mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Remove "V2" suffix from ChatOverlay
components
This commit is contained in:
@ -32,9 +32,9 @@ using osuTK.Input;
|
||||
namespace osu.Game.Tests.Visual.Online
|
||||
{
|
||||
[TestFixture]
|
||||
public class TestSceneChatOverlayV2 : OsuManualInputManagerTestScene
|
||||
public class TestSceneChatOverlay : OsuManualInputManagerTestScene
|
||||
{
|
||||
private TestChatOverlayV2 chatOverlay;
|
||||
private TestChatOverlay chatOverlay;
|
||||
private ChannelManager channelManager;
|
||||
|
||||
private APIUser testUser;
|
||||
@ -64,7 +64,7 @@ namespace osu.Game.Tests.Visual.Online
|
||||
Children = new Drawable[]
|
||||
{
|
||||
channelManager,
|
||||
chatOverlay = new TestChatOverlayV2(),
|
||||
chatOverlay = new TestChatOverlay(),
|
||||
},
|
||||
};
|
||||
});
|
||||
@ -564,7 +564,7 @@ namespace osu.Game.Tests.Visual.Online
|
||||
};
|
||||
}
|
||||
|
||||
private class TestChatOverlayV2 : ChatOverlayV2
|
||||
private class TestChatOverlay : ChatOverlay
|
||||
{
|
||||
public bool SlowLoading { get; set; }
|
||||
|
@ -208,7 +208,7 @@ namespace osu.Game.Tests.Visual.Online
|
||||
};
|
||||
|
||||
[Cached]
|
||||
public ChatOverlayV2 ChatOverlay { get; } = new ChatOverlayV2();
|
||||
public ChatOverlay ChatOverlay { get; } = new ChatOverlay();
|
||||
|
||||
private readonly MessageNotifier messageNotifier = new MessageNotifier();
|
||||
|
||||
|
Reference in New Issue
Block a user