1
0
mirror of https://github.com/ppy/osu synced 2025-03-19 17:44:30 +00:00

Fix multiplayer create button appearing in match song selection ()

Fix multiplayer create button appearing in match song selection
This commit is contained in:
Dean Herbert 2019-06-24 12:31:39 +09:00 committed by GitHub
commit 1057301322
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -257,7 +257,7 @@ namespace osu.Game.Screens.Multi
private void subScreenChanged(IScreen newScreen)
{
updatePollingRate(isIdle.Value);
createButton.FadeTo(newScreen is MatchSubScreen ? 0 : 1, 200);
createButton.FadeTo(newScreen is LoungeSubScreen ? 1 : 0, 200);
updateTrack();
}