1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 15:00:46 +08:00

Fix notifications not showing at main osu! logo on menu

This commit is contained in:
Dean Herbert
2018-06-07 01:49:34 +09:00
Unverified
parent 1d5a773399
commit f491a18d40
+4 -1
View File
@@ -326,7 +326,10 @@ namespace osu.Game.Screens.Menu
logoTracking = false;
if (game != null)
game.OverlayActivationMode.Value = state == MenuState.Exit ? OverlayActivation.Disabled : OverlayActivation.UserTriggered;
{
game.OverlayActivationMode.Value = state == MenuState.Exit ? OverlayActivation.Disabled : OverlayActivation.All;
game.Toolbar.Hide();
}
logo.ClearTransforms(targetMember: nameof(Position));
logo.RelativePositionAxes = Axes.Both;