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

Merge pull request #14431 from peppy/fix-setting-section-clickability

Fix bottom area of a settings section not being clickable
This commit is contained in:
Salman Ahmed 2021-08-21 15:31:50 +03:00 committed by GitHub
commit b2ee777ceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,6 @@ namespace osu.Game.Overlays.Settings
protected SettingsSection()
{
Margin = new MarginPadding { Top = margin };
AutoSizeAxes = Axes.Y;
RelativeSizeAxes = Axes.X;
@ -80,7 +79,7 @@ namespace osu.Game.Overlays.Settings
Padding = new MarginPadding
{
Top = margin + border_size,
Bottom = 10,
Bottom = margin + 10,
},
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,