1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 07:51:17 +08:00

Add missing padding around countdown settings button

This commit is contained in:
Dean Herbert
2025-11-25 00:55:22 +09:00
Unverified
parent 56ce955e0c
commit d59e9572d2
@@ -50,11 +50,12 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
ColumnDimensions = new[]
{
new Dimension(),
new Dimension(GridSizeMode.Absolute, 5),
new Dimension(GridSizeMode.AutoSize)
},
Content = new[]
{
new Drawable[]
new Drawable?[]
{
readyButton = new MultiplayerReadyButton
{
@@ -62,6 +63,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
Size = Vector2.One,
Action = onReadyButtonClick,
},
null,
countdownButton = new MultiplayerCountdownButton
{
RelativeSizeAxes = Axes.Y,