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

Add a bit of padding between the sections

This commit is contained in:
smoogipoo 2019-04-03 16:43:56 +09:00
parent f8596e055a
commit 3da008d293

View File

@ -65,6 +65,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
},
null,
statisticsSection = new TopScoreStatisticsSection
{
Anchor = Anchor.CentreRight,
@ -72,7 +73,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
}
},
},
ColumnDimensions = new[] { new Dimension(GridSizeMode.AutoSize) },
ColumnDimensions = new[] { new Dimension(GridSizeMode.AutoSize), new Dimension(GridSizeMode.Absolute, 20) },
RowDimensions = new[] { new Dimension(GridSizeMode.AutoSize) },
}
}