1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:52:54 +08:00

Fix match footer test scene not working in visual testing

This commit is contained in:
smoogipoo 2021-09-15 17:16:08 +09:00
parent cab294ffa6
commit cdb44d7239

View File

@ -3,6 +3,7 @@
using NUnit.Framework;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay.Multiplayer.Match;
@ -15,11 +16,13 @@ namespace osu.Game.Tests.Visual.Multiplayer
{
SelectedRoom.Value = new Room();
Child = new MultiplayerMatchFooter
Child = new Container
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Height = 50
RelativeSizeAxes = Axes.X,
Height = 50,
Child = new MultiplayerMatchFooter()
};
});
}