1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 19:12:57 +08:00

Merge pull request #914 from DrabWeb/searchable-list-padding

Add padding to the bottom of SearchableListOverlay's ScrollFlow
This commit is contained in:
Dean Herbert 2017-06-07 22:36:15 +09:00 committed by GitHub
commit 2124ffab5a

View File

@ -70,7 +70,7 @@ namespace osu.Game.Overlays.SearchableList
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y, AutoSizeAxes = Axes.Y,
Padding = new MarginPadding { Horizontal = WIDTH_PADDING }, Padding = new MarginPadding { Horizontal = WIDTH_PADDING, Bottom = 50 },
Direction = FillDirection.Vertical, Direction = FillDirection.Vertical,
}, },
}, },