Formatting fixes

This commit is contained in:
smoogipoo
2019-03-06 16:30:56 +09:00
parent 3c999d64d4
commit e3d463a141
8 changed files with 49 additions and 18 deletions

View File

@ -24,13 +24,17 @@ namespace osu.Game.Overlays.Profile.Header
private Color4 linkBlue, communityUserGrayGreenLighter;
private User user;
public User User
{
get => user;
set
{
if (user == value) return;
if (user == value)
return;
user = value;
updateDisplay();
}
}
@ -131,9 +135,8 @@ namespace osu.Game.Overlays.Profile.Header
});
}
else
{
bottomLinkContainer.AddText(" " + content, bold);
}
addSpacer(bottomLinkContainer);
}