Fix bottom area of a settings section not being clickable

This commit is contained in:
Dean Herbert 2021-08-21 15:08:42 +09:00
parent d3dba296d6
commit ae47c5cdb3
1 changed files with 1 additions and 2 deletions

View File

@ -47,7 +47,6 @@ public bool MatchingFilter
protected SettingsSection()
{
Margin = new MarginPadding { Top = margin };
AutoSizeAxes = Axes.Y;
RelativeSizeAxes = Axes.X;
@ -80,7 +79,7 @@ private void load(OsuColour colours)
Padding = new MarginPadding
{
Top = margin + border_size,
Bottom = 10,
Bottom = margin + 10,
},
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,