1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 10:42:54 +08:00

Fix another font usage case

This commit is contained in:
Dean Herbert 2019-05-15 18:27:43 +09:00
parent 1505ca976b
commit 084ea3efa9

View File

@ -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;
}