From 67d3d772f61fa3740d84b0780e3efaff7b8b1c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adonais=20Romero=20Gonz=C3=A1lez?= Date: Sat, 8 Oct 2016 22:15:25 -0500 Subject: [PATCH] Minor fix with StarCounter width --- osu.Game/Graphics/UserInterface/StarCounter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Graphics/UserInterface/StarCounter.cs b/osu.Game/Graphics/UserInterface/StarCounter.cs index 13300f1d4b..5c355d06d6 100644 --- a/osu.Game/Graphics/UserInterface/StarCounter.cs +++ b/osu.Game/Graphics/UserInterface/StarCounter.cs @@ -63,7 +63,7 @@ namespace osu.Game.Graphics.UserInterface { Anchor = Anchor.CentreLeft, Origin = Anchor.CentreLeft, - Width = MaxStars * StarSize, + Width = MaxStars * StarSize + Math.Max(MaxStars - 1, 0) * StarSpacing, Height = StarSize, } };