Fix spacing specifications

This commit is contained in:
Dean Herbert
2019-09-02 15:37:38 +09:00
parent 13fadec6ec
commit c06908adf7

View File

@ -38,7 +38,7 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
Anchor = Anchor.CentreLeft, Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft, Origin = Anchor.CentreLeft,
AutoSizeAxes = Axes.Both, AutoSizeAxes = Axes.Both,
Spacing = new Vector2(3), Spacing = new Vector2(0, 3),
}, },
date = new DrawableDate(historyItem.CreatedAt) date = new DrawableDate(historyItem.CreatedAt)
{ {
@ -66,7 +66,8 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
}); });
} }
linkFlowContainer.AddLinks(formattedSource.Text + " ", formattedSource.Links); linkFlowContainer.AddLinks(formattedSource.Text, formattedSource.Links);
linkFlowContainer.AddText(" ");
linkFlowContainer.AddLink(historyItem.Post.Title, historyItem.Post.Url); linkFlowContainer.AddLink(historyItem.Post.Title, historyItem.Post.Url);
} }