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

Make it display by default.

This commit is contained in:
smoogipooo 2017-02-27 23:38:29 +09:00
parent fc33bf4761
commit 44f3dfa3fe
2 changed files with 9 additions and 0 deletions

View File

@ -13,6 +13,7 @@ using osu.Game.Screens.Direct;
using osu.Game.Screens.Multiplayer;
using OpenTK;
using osu.Game.Screens.Select;
using osu.Game.Screens.Tournament;
namespace osu.Game.Screens.Menu
{
@ -61,6 +62,13 @@ namespace osu.Game.Screens.Menu
buttons.OnSettings = game.ToggleOptions;
}
protected override void LoadComplete()
{
base.LoadComplete();
Push(new Drawings());
}
protected override void OnEntering(Screen last)
{
base.OnEntering(last);

View File

@ -24,6 +24,7 @@ namespace osu.Game.Screens.Tournament
public class Drawings : OsuScreen
{
protected override BackgroundScreen CreateBackground() => new BackgroundScreenDefault();
internal override bool ShowOverlays => false;
private ScrollingTeamContainer teamsContainer;
private GroupsContainer groupsContainer;