This commit is contained in:
smoogipoo 2021-08-20 21:45:24 +09:00
parent 5192ee3b57
commit f85d3665d8
4 changed files with 1 additions and 8 deletions

View File

@ -235,7 +235,6 @@ namespace osu.Game.Screens.OnlinePlay.Lounge
public override void OnEntering(IScreen last)
{
base.OnEntering(last);
onReturning();
}

View File

@ -426,7 +426,7 @@ namespace osu.Game.Screens.OnlinePlay.Match
/// <summary>
/// Creates the room settings overlay.
/// </summary>
/// <param name="room"></param>
/// <param name="room">The room to change the settings of.</param>
protected abstract RoomSettingsOverlay CreateRoomSettingsOverlay(Room room);
private class UserModSelectOverlay : LocalPlayerModSelectOverlay

View File

@ -78,9 +78,6 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
if (!connected.NewValue)
handleRoomLost();
}, true);
// if (client.Room == null)
// handleRoomLost();
}
protected override Drawable CreateMainContent() => new GridContainer

View File

@ -36,9 +36,7 @@ namespace osu.Game.Screens.OnlinePlay
public override bool OnExiting(IScreen next)
{
base.OnExiting(next);
this.FadeOut(DISAPPEAR_DURATION, Easing.OutQuint);
return false;
}
@ -51,7 +49,6 @@ namespace osu.Game.Screens.OnlinePlay
public override void OnSuspending(IScreen next)
{
base.OnSuspending(next);
this.FadeOut(DISAPPEAR_DURATION, Easing.OutQuint);
}