1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 09:22:34 +08:00

Adjust margins/paddings

This commit is contained in:
Andrei Zavatski
2020-07-11 09:03:03 +03:00
Unverified
parent 84392d0d13
commit 024ccc75ee
2 changed files with 5 additions and 1 deletions
@@ -29,6 +29,10 @@ namespace osu.Game.Overlays.Comments.Buttons
private void load()
{
AutoSizeAxes = Axes.Both;
Margin = new MarginPadding
{
Vertical = 2
};
InternalChildren = new Drawable[]
{
new CircularContainer
@@ -83,7 +83,7 @@ namespace osu.Game.Overlays.Comments
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding(margin) { Left = margin + 5 },
Padding = new MarginPadding(margin) { Left = margin + 5, Top = Comment.IsTopLevel ? 10 : 0 },
Child = content = new GridContainer
{
RelativeSizeAxes = Axes.X,