1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 11:42:54 +08:00

Limit width of test scene controls

To better reflect what the widths should be in actual usage.
This commit is contained in:
Bartłomiej Dach 2024-09-13 14:54:07 +02:00
parent 929ea87975
commit f71ce8869e
No known key found for this signature in database

View File

@ -26,7 +26,10 @@ namespace osu.Game.Tests.Visual.UserInterface
RelativeSizeAxes = Axes.Both,
Child = new FillFlowContainer
{
RelativeSizeAxes = Axes.Both,
RelativeSizeAxes = Axes.Y,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Width = 400,
Direction = FillDirection.Vertical,
Spacing = new Vector2(5),
Padding = new MarginPadding(10),