1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-04 07:04:04 +08:00

Fix vertical overlaps on multiselection filters when they wrap

This commit is contained in:
Bartłomiej Dach 2024-06-28 09:07:29 +02:00
parent fa1527f446
commit 030bbf2641
No known key found for this signature in database

View File

@ -55,7 +55,7 @@ namespace osu.Game.Overlays.BeatmapListing
{ {
RelativeSizeAxes = Axes.X; RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y; AutoSizeAxes = Axes.Y;
Spacing = new Vector2(10, 0); Spacing = new Vector2(10, 5);
AddRange(GetValues().Select(CreateTabItem)); AddRange(GetValues().Select(CreateTabItem));
} }