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:
@@ -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,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user