Add missing return

This commit is contained in:
Dean Herbert
2018-12-04 12:14:26 +09:00
parent a33865efce
commit 415349e6ef

View File

@ -88,7 +88,10 @@ namespace osu.Game.Screens.Select
protected override void ExitFromBack() protected override void ExitFromBack()
{ {
if (modSelect.State == Visibility.Visible) if (modSelect.State == Visibility.Visible)
{
modSelect.Hide(); modSelect.Hide();
return;
}
base.ExitFromBack(); base.ExitFromBack();
} }