1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-09 20:54:47 +08:00

Fix spectate button being disabled during play

This commit is contained in:
smoogipoo
2021-04-13 23:49:23 +09:00
Unverified
parent 56e1bffdfd
commit 77830527e7
@@ -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