1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Merge pull request #13605 from aitani9/overlay-item-sound-edge

Empty the space between `OverlayStreamItem`s
This commit is contained in:
Dan Balasescu 2021-06-22 22:13:39 +09:00 committed by GitHub
commit bdc440f11c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,9 +39,9 @@ namespace osu.Game.Overlays
protected OverlayStreamItem(T value)
: base(value)
{
Height = 60;
Width = 100;
Padding = new MarginPadding(5);
Height = 50;
Width = 90;
Margin = new MarginPadding(5);
}
[BackgroundDependencyLoader]