1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-28 04:43:37 +08:00

Fix sizing / padding of collection dropdown header

This commit is contained in:
Dean Herbert 2024-07-08 19:32:28 +09:00
parent 257de9d08b
commit 910153c2e0
No known key found for this signature in database

View File

@ -163,8 +163,8 @@ namespace osu.Game.Collections
public CollectionDropdownHeader() public CollectionDropdownHeader()
{ {
Height = 25; Height = 25;
Chevron.Size = new Vector2(16); Chevron.Size = new Vector2(12);
Foreground.Padding = new MarginPadding { Top = 4, Bottom = 4, Left = 8, Right = 4 }; Foreground.Padding = new MarginPadding { Top = 4, Bottom = 4, Left = 8, Right = 8 };
} }
} }