Minor fix with StarCounter width

This commit is contained in:
Adonais Romero González
2016-10-08 22:15:25 -05:00
parent 37115c8c9f
commit 67d3d772f6

View File

@ -63,7 +63,7 @@ namespace osu.Game.Graphics.UserInterface
{ {
Anchor = Anchor.CentreLeft, Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft, Origin = Anchor.CentreLeft,
Width = MaxStars * StarSize, Width = MaxStars * StarSize + Math.Max(MaxStars - 1, 0) * StarSpacing,
Height = StarSize, Height = StarSize,
} }
}; };