Add back padding

This commit is contained in:
Dean Herbert
2018-11-16 12:20:21 +09:00
parent 46e163ec5e
commit e6637532bc

View File

@ -109,8 +109,8 @@ namespace osu.Game.Tournament.Screens.Gameplay.Components
{ {
base.UpdateAfterChildren(); base.UpdateAfterChildren();
score1Text.X = -Math.Max(score1Text.DrawWidth / 2, score1Bar.DrawWidth); score1Text.X = -Math.Max(5 + score1Text.DrawWidth / 2, score1Bar.DrawWidth);
score2Text.X = Math.Max(score2Text.DrawWidth / 2, score2Bar.DrawWidth); score2Text.X = Math.Max(5 + score2Text.DrawWidth / 2, score2Bar.DrawWidth);
} }
private class MatchScoreCounter : ScoreCounter private class MatchScoreCounter : ScoreCounter