1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 15:50:38 +08:00

Fix increased spacing on fps counter tooltip

This commit is contained in:
Bartłomiej Dach
2025-04-23 08:55:41 +02:00
Unverified
parent b9fe5079fc
commit 3f98dd93ed
@@ -44,7 +44,8 @@ namespace osu.Game.Graphics.UserInterface
AutoSizeAxes = Axes.Both,
TextAnchor = Anchor.TopRight,
Margin = new MarginPadding { Left = 5, Vertical = 10 },
Text = string.Join('\n', gameHost.Threads.Select(t => t.Name))
Text = string.Join('\n', gameHost.Threads.Select(t => t.Name)),
ParagraphSpacing = 0,
},
textFlow = new OsuTextFlowContainer(cp =>
{
@@ -56,6 +57,7 @@ namespace osu.Game.Graphics.UserInterface
Margin = new MarginPadding { Left = 35, Right = 10, Vertical = 10 },
AutoSizeAxes = Axes.Y,
TextAnchor = Anchor.TopRight,
ParagraphSpacing = 0,
},
};
}