1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Fix overlap between header text and menu items

This commit is contained in:
Dean Herbert 2023-07-19 15:13:20 +09:00
parent 871056790b
commit 55a41b0887

View File

@ -25,7 +25,10 @@ namespace osu.Game.Screens.Edit.Components.Menus
RelativeSizeAxes = Axes.X;
MaskingContainer.CornerRadius = 0;
ItemsContainer.Padding = new MarginPadding { Left = heading_area };
ItemsContainer.Padding = new MarginPadding();
ContentContainer.Margin = new MarginPadding { Left = heading_area };
ContentContainer.Masking = true;
}
[BackgroundDependencyLoader]