1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 02:25:29 +08:00

move base.loadcomplete to the bottom

This commit is contained in:
Shivam
2020-06-09 20:30:15 +02:00
Unverified
parent e57a229474
commit af05ee67cb
+3 -2
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();
}
}
}