mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 23:23:04 +08:00
Fix notifications not showing at main osu! logo on menu
This commit is contained in:
parent
1d5a773399
commit
f491a18d40
@ -326,7 +326,10 @@ namespace osu.Game.Screens.Menu
|
|||||||
logoTracking = false;
|
logoTracking = false;
|
||||||
|
|
||||||
if (game != null)
|
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.ClearTransforms(targetMember: nameof(Position));
|
||||||
logo.RelativePositionAxes = Axes.Both;
|
logo.RelativePositionAxes = Axes.Both;
|
||||||
|
Loading…
Reference in New Issue
Block a user