1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-16 18:38:32 +08:00

Merge pull request #28874 from peppy/fix-editor-toolbox-padding

Fix editor toolboxes being incorrectly chopped
This commit is contained in:
Dan Balasescu
2024-07-16 10:37:33 +09:00
committed by GitHub
Unverified
@@ -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);