Construct DwarableScore using null weight.

This commit is contained in:
Huo Yaoyuan 2017-10-15 16:15:35 +08:00
parent ec7cc5e473
commit bed5a64ee2
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ private void showMore()
{
missing.Hide();
foreach (OnlineScore score in scores)
scoreContainer.Add(new DrawableScore(score, includeWeigth ? Math.Pow(0.95, scoreContainer.Count) : -1)
scoreContainer.Add(new DrawableScore(score, includeWeigth ? Math.Pow(0.95, scoreContainer.Count) : (double?)null)
{
RelativeSizeAxes = Axes.X,
Height = 60,