Forgot to devide width by 2

This commit is contained in:
Sean Bohan 2018-03-13 08:02:58 +08:00
parent 72e82ecf48
commit 4cde28fecd

View file

@ -1293,7 +1293,7 @@ var Body = new Class({
if (this.isCircle)
{
graphic.strokeCircle(x, y, this.width);
graphic.strokeCircle(x, y, this.width / 2);
}
else
{