Replace loaded check with better variation

This commit is contained in:
smoogipoo 2020-09-09 22:01:09 +09:00
parent be2d34d5dc
commit d7ca2cf1cc

View File

@ -120,7 +120,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
statisticsColumns.ChildrenEnumerable = value.SortedStatistics.Select(kvp => createStatisticsColumn(kvp.Key, kvp.Value)); statisticsColumns.ChildrenEnumerable = value.SortedStatistics.Select(kvp => createStatisticsColumn(kvp.Key, kvp.Value));
modsColumn.Mods = value.Mods; modsColumn.Mods = value.Mods;
if (IsLoaded) if (scoreManager != null)
totalScoreColumn.Current = scoreManager.GetBindableTotalScoreString(value); totalScoreColumn.Current = scoreManager.GetBindableTotalScoreString(value);
} }
} }