From 9458f0d01d2ae41d980a8a7a6a4bdc972e09457c Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Fri, 14 Feb 2025 20:38:44 +0900 Subject: [PATCH] Remove unnecessary update, document other usage --- .../Screens/OnlinePlay/Playlists/PlaylistsRoomSubScreen.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsRoomSubScreen.cs b/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsRoomSubScreen.cs index 76f0c04295..45e220cce9 100644 --- a/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsRoomSubScreen.cs +++ b/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsRoomSubScreen.cs @@ -684,7 +684,6 @@ namespace osu.Game.Screens.OnlinePlay.Playlists public override void OnEntering(ScreenTransitionEvent e) { base.OnEntering(e); - updateGameplayState(); beginHandlingTrack(); } @@ -697,8 +696,10 @@ namespace osu.Game.Screens.OnlinePlay.Playlists public override void OnResuming(ScreenTransitionEvent e) { base.OnResuming(e); - updateGameplayState(); beginHandlingTrack(); + + // Required when resuming from style selection. + updateGameplayState(); } public override bool OnExiting(ScreenExitEvent e)