1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-21 03:32:54 +08:00

Merge pull request #8340 from smoogipoo/results-date-played

Add date played to score panel
This commit is contained in:
Dean Herbert 2020-03-18 18:55:26 +09:00 committed by GitHub
commit 25983cfe0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,6 +204,13 @@ namespace osu.Game.Screens.Ranking.Expanded
}
}
}
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Font = OsuFont.GetFont(size: 10, weight: FontWeight.SemiBold),
Text = $"Played on {score.Date.ToLocalTime():g}"
}
}
};