Change anchoring to TopRight

This commit is contained in:
Bartłomiej Dach 2020-08-31 19:23:19 +02:00
parent 7d273d631b
commit 2e2f26449d
1 changed files with 4 additions and 4 deletions

View File

@ -227,13 +227,13 @@ private void load(LocalisationManager localisation)
{
createStarRatingDisplay(beatmapInfo).With(display =>
{
display.Anchor = Anchor.CentreRight;
display.Origin = Anchor.CentreRight;
display.Anchor = Anchor.TopRight;
display.Origin = Anchor.TopRight;
}),
StatusPill = new BeatmapSetOnlineStatusPill
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
TextSize = 11,
TextPadding = new MarginPadding { Horizontal = 8, Vertical = 2 },
Status = beatmapInfo.Status,