1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 07:59:54 +08:00

Merge pull request #2746 from peppy/fix-menu-notifications

Fix notifications not showing at main osu! logo on menu
This commit is contained in:
Dan Balasescu
2018-06-07 15:54:25 +09:00
committed by GitHub
Unverified
+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;