mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 08:12:56 +08:00
Construct DwarableScore using null weight.
This commit is contained in:
parent
4a064da30f
commit
90592b0757
@ -155,7 +155,7 @@ namespace osu.Game.Overlays.Profile.Sections
|
||||
{
|
||||
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,
|
||||
|
Loading…
Reference in New Issue
Block a user