1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-25 07:50:02 +08:00

fixed static analysis problems and finished the implementation

This commit is contained in:
Joshua Hegedus
2023-11-09 13:27:09 +01:00
Unverified
parent ccb9ff826a
commit 4900a91c60
3 changed files with 31 additions and 32 deletions
+5 -6
View File
@@ -75,15 +75,14 @@ namespace osu.Game.Users.Drawables
return new ClickableAvatar(user)
{
RelativeSizeAxes = Axes.Both,
ShowUsernameOnly = showUsernameOnly
};
}
else
return new DrawableAvatar(user)
{
return new DrawableAvatar(user)
{
RelativeSizeAxes = Axes.Both,
};
}
RelativeSizeAxes = Axes.Both,
};
}
}
}