Make dates non-italic to match osu-web

This commit is contained in:
TheWildTree 2020-02-02 17:22:48 +01:00
parent d15942d127
commit 3cc1b811ef

View File

@ -82,7 +82,7 @@ namespace osu.Game.Overlays.Profile.Header
else else
{ {
topLinkContainer.AddText("Joined "); topLinkContainer.AddText("Joined ");
topLinkContainer.AddText(new DrawableDate(user.JoinDate), embolden); topLinkContainer.AddText(new DrawableDate(user.JoinDate, italic: false), embolden);
} }
addSpacer(topLinkContainer); addSpacer(topLinkContainer);
@ -95,7 +95,7 @@ namespace osu.Game.Overlays.Profile.Header
else if (user.LastVisit.HasValue) else if (user.LastVisit.HasValue)
{ {
topLinkContainer.AddText("Last seen "); topLinkContainer.AddText("Last seen ");
topLinkContainer.AddText(new DrawableDate(user.LastVisit.Value), embolden); topLinkContainer.AddText(new DrawableDate(user.LastVisit.Value, italic: false), embolden);
addSpacer(topLinkContainer); addSpacer(topLinkContainer);
} }