1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 07:32:55 +08:00

Adjust boldening

This commit is contained in:
smoogipoo 2020-06-25 22:06:28 +09:00
parent 20092c58ff
commit 668105dd6e
2 changed files with 4 additions and 4 deletions

View File

@ -84,9 +84,9 @@ namespace osu.Game.Screens.Multi.Components
new OsuSpriteText new OsuSpriteText
{ {
Text = title, Text = title,
Font = OsuFont.GetFont(size: 14) Font = OsuFont.GetFont(size: 14, weight: FontWeight.SemiBold)
}, },
details = new OsuSpriteText { Font = OsuFont.GetFont(size: 14) }, details = new OsuSpriteText { Font = OsuFont.GetFont(size: 14, weight: FontWeight.SemiBold) },
} }
}, },
}, },

View File

@ -52,7 +52,7 @@ namespace osu.Game.Screens.Multi.Match.Components
Font = OsuFont.GetFont(size: 30), Font = OsuFont.GetFont(size: 30),
Current = { BindTarget = RoomName } Current = { BindTarget = RoomName }
}, },
hostText = new LinkFlowContainer(s => s.Font = OsuFont.GetFont(size: 20, weight: FontWeight.SemiBold)) hostText = new LinkFlowContainer(s => s.Font = OsuFont.GetFont(size: 20))
{ {
AutoSizeAxes = Axes.Both, AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal, Direction = FillDirection.Horizontal,
@ -71,7 +71,7 @@ namespace osu.Game.Screens.Multi.Match.Components
if (host.NewValue != null) if (host.NewValue != null)
{ {
hostText.AddText("hosted by "); hostText.AddText("hosted by ");
hostText.AddUserLink(host.NewValue); hostText.AddUserLink(host.NewValue, s => s.Font = s.Font.With(weight: FontWeight.SemiBold));
} }
}, true); }, true);
} }