Remove old scores before adding new ones

This commit is contained in:
TheWildTree 2020-03-04 20:01:15 +01:00
parent 9aacc3f5ae
commit 5628c5102d
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,8 @@ private void load(OsuColour colours)
public void DisplayScores(IReadOnlyList<ScoreInfo> scores, bool showPerformanceColumn)
{
ClearScores();
if (!scores.Any())
return;