mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Construct DwarableScore using null weight.
This commit is contained in:
@ -155,7 +155,7 @@ namespace osu.Game.Overlays.Profile.Sections
|
|||||||
{
|
{
|
||||||
missing.Hide();
|
missing.Hide();
|
||||||
foreach (OnlineScore score in scores)
|
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,
|
RelativeSizeAxes = Axes.X,
|
||||||
Height = 60,
|
Height = 60,
|
||||||
|
Reference in New Issue
Block a user