mirror of
https://github.com/ppy/osu
synced 2024-12-13 18:37:04 +00:00
Construct DwarableScore using null weight.
This commit is contained in:
parent
ec7cc5e473
commit
bed5a64ee2
@ -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