move base.loadcomplete to the bottom

This commit is contained in:
Shivam 2020-06-09 20:30:15 +02:00
parent e57a229474
commit af05ee67cb

View File

@ -114,11 +114,12 @@ namespace osu.Game.Tournament
protected override void LoadComplete()
{
base.LoadComplete();
MenuCursorContainer.Cursor.AlwaysPresent = true; // required for tooltip display
// we don't want to show the menu cursor as it would appear on stream output.
MenuCursorContainer.Cursor.Alpha = 0;
base.LoadComplete();
}
}
}