Adjust a couple of flag scales to match previous display size

This commit is contained in:
Dean Herbert 2020-10-26 14:27:55 +09:00
parent 7ed128e030
commit ac13a1d217
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ public GroupTeam(TournamentTeam team)
AcronymText.Origin = Anchor.TopCentre;
AcronymText.Text = team.Acronym.Value.ToUpperInvariant();
AcronymText.Font = OsuFont.Torus.With(weight: FontWeight.Bold, size: 10);
Flag.Scale = new Vector2(0.5f);
Flag.Scale = new Vector2(0.48f);
InternalChildren = new Drawable[]
{

View File

@ -63,7 +63,7 @@ public DrawableMatchTeam(TournamentTeam team, TournamentMatch match, bool losers
this.losers = losers;
Size = new Vector2(150, 40);
Flag.Scale = new Vector2(0.55f);
Flag.Scale = new Vector2(0.54f);
Flag.Anchor = Flag.Origin = Anchor.CentreLeft;
AcronymText.Anchor = AcronymText.Origin = Anchor.CentreLeft;