From 0da8a483c5fecd43bfd398291e3447ac3097cfc9 Mon Sep 17 00:00:00 2001 From: Andrei Zavatski Date: Wed, 19 Jun 2019 23:14:53 +0300 Subject: [PATCH] Fix scores header is visible even if no scores are loaded --- osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs b/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs index 8ef3f71fe3..3e6c938802 100644 --- a/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs +++ b/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs @@ -124,6 +124,7 @@ private void updateDisplay() loading = false; scoreTable.Scores = scores?.Count > 1 ? scores : new List(); + scoreTable.FadeTo(scores?.Count > 1 ? 1 : 0); if (scores?.Any() == true) {