From 070aceef1e5a2876d4b5d53e91b38e3b125d62df Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 13 Oct 2017 17:03:31 +0900 Subject: [PATCH] Move font and text size to class ProfileLink class --- osu.Game/Overlays/Profile/ProfileHeader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Overlays/Profile/ProfileHeader.cs b/osu.Game/Overlays/Profile/ProfileHeader.cs index 3814fdcc18..337d4fe253 100644 --- a/osu.Game/Overlays/Profile/ProfileHeader.cs +++ b/osu.Game/Overlays/Profile/ProfileHeader.cs @@ -125,8 +125,6 @@ namespace osu.Game.Overlays.Profile Anchor = Anchor.BottomLeft, Origin = Anchor.BottomLeft, Y = -48, - TextSize = 30, - Font = @"Exo2.0-RegularItalic", }, countryFlag = new DrawableFlag(user.Country?.FlagName) { @@ -547,6 +545,8 @@ namespace osu.Game.Overlays.Profile { Text = user.Username; Url = $@"https://osu.ppy.sh/users/{user.Id}"; + Font = @"Exo2.0-RegularItalic"; + TextSize = 30; } } }