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
1 changed files with 2 additions and 1 deletions

View File

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