1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 11:42:54 +08:00

Fix numeric font

This commit is contained in:
ansel 2022-12-03 23:38:50 +03:00
parent 8174f6be64
commit b240d15731

View File

@ -26,7 +26,7 @@ namespace osu.Game.Skinning.Components
base.LoadComplete();
Font.BindValueChanged(e =>
{
FontUsage f = OsuFont.GetFont(e.NewValue);
FontUsage f = OsuFont.GetFont(e.NewValue, weight: e.NewValue == Typeface.Venera ? FontWeight.Bold : FontWeight.Regular);
SetFont(f);
}, true);
}