1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00

Adjust text size values

This commit is contained in:
Andrei Zavatski 2020-03-07 04:05:17 +03:00
parent 66f40f7f6e
commit e886c155e6

View File

@ -129,7 +129,7 @@ namespace osu.Game.Users
protected OsuSpriteText CreateUsername() => new OsuSpriteText
{
Font = OsuFont.GetFont(size: 20, weight: FontWeight.Bold, italics: true),
Font = OsuFont.GetFont(size: 16, weight: FontWeight.Bold),
Shadow = false,
Text = User.Username,
};
@ -150,7 +150,7 @@ namespace osu.Game.Users
var alignment = rightAlignedChildren ? Anchor.CentreRight : Anchor.CentreLeft;
statusContainer.Add(lastVisitMessage = new TextFlowContainer(t => t.Font = OsuFont.GetFont(size: 15, weight: FontWeight.SemiBold)).With(text =>
statusContainer.Add(lastVisitMessage = new TextFlowContainer(t => t.Font = OsuFont.GetFont(size: 12, weight: FontWeight.SemiBold)).With(text =>
{
text.Anchor = alignment;
text.Origin = alignment;
@ -171,7 +171,7 @@ namespace osu.Game.Users
{
Anchor = alignment,
Origin = alignment,
Font = OsuFont.GetFont(size: 17, weight: FontWeight.SemiBold)
Font = OsuFont.GetFont(size: 14, weight: FontWeight.SemiBold)
});
return statusContainer;