Initial implementation

This commit is contained in:
Andrei Zavatski
2019-06-18 19:13:21 +03:00
parent f15df51514
commit 03d560ed41
2 changed files with 9 additions and 1 deletions

View File

@ -87,7 +87,12 @@ namespace osu.Game.Overlays.Profile.Header
addSpacer(topLinkContainer);
if (user.LastVisit.HasValue)
if (user.IsOnline)
{
topLinkContainer.AddText("Currently online");
addSpacer(topLinkContainer);
}
else if(user.LastVisit.HasValue)
{
topLinkContainer.AddText("Last seen ");
topLinkContainer.AddText(new DrawableDate(user.LastVisit.Value), embolden);