mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 14:17:06 +09:00
TestCase fix
This commit is contained in:
@ -73,6 +73,8 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
||||
|
||||
private void updateDisplay()
|
||||
{
|
||||
scoreTable.ClearScores();
|
||||
|
||||
loading = false;
|
||||
|
||||
var scoreCount = scores?.Count() ?? 0;
|
||||
@ -80,15 +82,12 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
||||
if (scoreCount == 0)
|
||||
{
|
||||
topScore.Hide();
|
||||
scoreTable.ClearScores();
|
||||
return;
|
||||
}
|
||||
|
||||
topScore.Score = scores.FirstOrDefault();
|
||||
topScore.Show();
|
||||
|
||||
scoreTable.ClearScores();
|
||||
|
||||
if (scoreCount < 2)
|
||||
return;
|
||||
|
||||
|
Reference in New Issue
Block a user