1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00

fix heading font weight to light

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-05-23 21:46:41 +07:00
parent bd1454bdd1
commit 222c34c0a1
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -116,7 +116,7 @@ namespace osu.Game.Overlays.Wiki
f.TextAnchor = Anchor.TopCentre;
});
protected override FontWeight GetFontWeightByLevel(int level) => FontWeight.Regular;
protected override FontWeight GetFontWeightByLevel(int level) => FontWeight.Light;
protected override float GetFontSizeByLevel(int level) => base.GetFontSizeByLevel(IsFullWidth ? level : 3);
}