Skip to content

Commit

Permalink
Limit width of test scene controls
Browse files Browse the repository at this point in the history
To better reflect what the widths should be in actual usage.
  • Loading branch information
bdach committed Sep 13, 2024
1 parent 929ea87 commit f71ce88
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion osu.Game.Tests/Visual/UserInterface/TestSceneFormControls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ public TestSceneFormControls()
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),
Expand Down

0 comments on commit f71ce88

Please sign in to comment.