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

@ -28,13 +28,17 @@ namespace osu.Game.Overlays.Profile.Header
private const float avatar_size = 110;
private User user;
public User User
{
get => user;
set
{
if (user == value) return;
if (user == value)
return;
user = value;
updateDisplay();
}
}