mirror of https://github.com/ppy/osu
Fix bottom area of a settings section not being clickable
This commit is contained in:
parent
d3dba296d6
commit
ae47c5cdb3
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue