Fix wiki main page blurb overflowing at higher ui scale

This commit is contained in:
Joseph Madamba 2021-09-16 17:32:23 -07:00
parent 414735b8d0
commit 2983d54682

View File

@ -9,7 +9,7 @@ using osu.Framework.Graphics.Containers;
using HtmlAgilityPack; using HtmlAgilityPack;
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Game.Graphics; using osu.Game.Graphics;
using osu.Game.Graphics.Sprites; using osu.Game.Graphics.Containers;
namespace osu.Game.Overlays.Wiki namespace osu.Game.Overlays.Wiki
{ {
@ -56,12 +56,12 @@ namespace osu.Game.Overlays.Wiki
{ {
Vertical = 30, Vertical = 30,
}, },
Child = new OsuSpriteText Child = new OsuTextFlowContainer(t => t.Font = OsuFont.GetFont(Typeface.Inter, size: 12, weight: FontWeight.Light))
{ {
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Text = blurbNode.InnerText, Text = blurbNode.InnerText,
Font = OsuFont.GetFont(Typeface.Inter, size: 12, weight: FontWeight.Light), TextAnchor = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
} }
}; };
} }