1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 05:22:54 +08:00

Ensure enough room for control panel display in editor tests

This commit is contained in:
Dean Herbert 2019-06-18 15:44:07 +09:00
parent e4eae3a6d5
commit c31713078f
2 changed files with 8 additions and 2 deletions

View File

@ -9,7 +9,10 @@ namespace osu.Game.Tournament.Tests.Screens
{
public TestSceneRoundEditorScreen()
{
Add(new RoundEditorScreen());
Add(new RoundEditorScreen
{
Width = 0.85f // create room for control panel
});
}
}
}

View File

@ -9,7 +9,10 @@ namespace osu.Game.Tournament.Tests.Screens
{
public TestSceneTeamEditorScreen()
{
Add(new TeamEditorScreen());
Add(new TeamEditorScreen
{
Width = 0.85f // create room for control panel
});
}
}
}