Merge pull request #20205 from peppy/fix-go-home-during-exit

Fix attempting to use "home" key binding while exiting game causing errors
This commit is contained in:
Dan Balasescu
2022-09-09 16:27:27 +09:00
committed by GitHub

View File

@ -839,7 +839,9 @@ namespace osu.Game
OnHome = delegate
{
CloseAllOverlays(false);
menuScreen?.MakeCurrent();
if (menuScreen?.GetChildScreen() != null)
menuScreen.MakeCurrent();
},
}, topMostOverlayContent.Add);