mirror of https://github.com/ppy/osu
Merge pull request #8131 from recapitalverb/fix-searchable-list-padding
Fix searchable list padding
This commit is contained in:
commit
e78c238ecd
|
@ -15,7 +15,7 @@ namespace osu.Game.Overlays.SearchableList
|
|||
{
|
||||
public abstract class SearchableListOverlay : FullscreenOverlay
|
||||
{
|
||||
public const float WIDTH_PADDING = 10;
|
||||
public const float WIDTH_PADDING = 80;
|
||||
|
||||
protected SearchableListOverlay(OverlayColourScheme colourScheme)
|
||||
: base(colourScheme)
|
||||
|
@ -80,7 +80,7 @@ protected SearchableListOverlay(OverlayColourScheme colourScheme)
|
|||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
AutoSizeAxes = Axes.Y,
|
||||
Padding = new MarginPadding { Horizontal = WIDTH_PADDING, Bottom = 50 },
|
||||
Padding = new MarginPadding { Horizontal = 10, Bottom = 50 },
|
||||
Direction = FillDirection.Vertical,
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue