Fix scores header is visible even if no scores are loaded

This commit is contained in:
Andrei Zavatski 2019-06-19 23:14:53 +03:00
parent 9858419c69
commit 0da8a483c5
1 changed files with 1 additions and 0 deletions

View File

@ -124,6 +124,7 @@ private void updateDisplay()
loading = false;
scoreTable.Scores = scores?.Count > 1 ? scores : new List<ScoreInfo>();
scoreTable.FadeTo(scores?.Count > 1 ? 1 : 0);
if (scores?.Any() == true)
{