1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 23:05:37 +08:00

Fix editor toolboxes being incorrectly chopped

This commit is contained in:
Dean Herbert 2024-07-15 21:02:54 +09:00
parent c854dfd6fb
commit 6cdcd6136d
No known key found for this signature in database

View File

@ -18,7 +18,7 @@ namespace osu.Game.Rulesets.Edit
RelativeSizeAxes = Axes.Y;
FillFlow.Spacing = new Vector2(5);
Padding = new MarginPadding { Vertical = 5 };
FillFlow.Padding = new MarginPadding { Vertical = 5 };
}
protected override bool ReceivePositionalInputAtSubTree(Vector2 screenSpacePos) => base.ReceivePositionalInputAtSubTree(screenSpacePos) && anyToolboxHovered(screenSpacePos);