mirror of
https://github.com/ppy/osu.git
synced 2025-01-30 07:32:55 +08:00
Adjust boldening
This commit is contained in:
parent
20092c58ff
commit
668105dd6e
@ -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) },
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user