1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 05:01:22 +08:00

Fix weird formatting

This commit is contained in:
Joseph Madamba
2024-05-02 17:05:12 -07:00
Unverified
parent 269077f854
commit 381ddb0676
+6 -7
View File
@@ -494,14 +494,13 @@ namespace osu.Game.Overlays
public FontUsage Font
{
set =>
Schedule(() =>
{
mainSpriteText.Font = value;
fillerSpriteText.Font = value;
set => Schedule(() =>
{
mainSpriteText.Font = value;
fillerSpriteText.Font = value;
updateText();
});
updateText();
});
}
public ScrollingTextContainer()