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:
parent
fc33bf4761
commit
44f3dfa3fe
@ -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);
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user