mirror of
https://github.com/ppy/osu.git
synced 2025-01-08 09:02:57 +08:00
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 abstract class SearchableListOverlay : FullscreenOverlay
|
||||||
{
|
{
|
||||||
public const float WIDTH_PADDING = 10;
|
public const float WIDTH_PADDING = 80;
|
||||||
|
|
||||||
protected SearchableListOverlay(OverlayColourScheme colourScheme)
|
protected SearchableListOverlay(OverlayColourScheme colourScheme)
|
||||||
: base(colourScheme)
|
: base(colourScheme)
|
||||||
@ -80,7 +80,7 @@ namespace osu.Game.Overlays.SearchableList
|
|||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.X,
|
RelativeSizeAxes = Axes.X,
|
||||||
AutoSizeAxes = Axes.Y,
|
AutoSizeAxes = Axes.Y,
|
||||||
Padding = new MarginPadding { Horizontal = WIDTH_PADDING, Bottom = 50 },
|
Padding = new MarginPadding { Horizontal = 10, Bottom = 50 },
|
||||||
Direction = FillDirection.Vertical,
|
Direction = FillDirection.Vertical,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user