1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 13:33:03 +08:00

Fix spectate button being disabled during play

This commit is contained in:
smoogipoo 2021-04-13 23:49:23 +09:00
parent 56e1bffdfd
commit 77830527e7

View File

@ -81,7 +81,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
break;
}
button.Enabled.Value = Client.Room?.State == MultiplayerRoomState.Open && !operationInProgress.Value;
button.Enabled.Value = !operationInProgress.Value;
}
private class ButtonWithTrianglesExposed : TriangleButton