mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 00:00:40 +08:00
Fix another font usage case
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using osu.Framework.Graphics.Colour;
|
||||
using osu.Game.Graphics;
|
||||
|
||||
namespace osu.Game.Overlays.Changelog.Header
|
||||
{
|
||||
@@ -12,7 +13,7 @@ namespace osu.Game.Overlays.Changelog.Header
|
||||
public BreadcrumbRelease(ColourInfo badgeColour, string displayText)
|
||||
: base(badgeColour, displayText)
|
||||
{
|
||||
Text.Font = "Exo2.0-Bold";
|
||||
Text.Font = Text.Font.With(weight: FontWeight.Bold);
|
||||
Text.Y = 20;
|
||||
Text.Alpha = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user