mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Minor fix with StarCounter width
This commit is contained in:
@ -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,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user