From c0e8285c07630242fb42098e57eebd56ba3ffc4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Thu, 28 Nov 2013 18:03:41 +0100 Subject: [PATCH] Fix setting #radius on Shape.Circle. --- src/item/Shape.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/item/Shape.js b/src/item/Shape.js index 286326b0..18e8f120 100644 --- a/src/item/Shape.js +++ b/src/item/Shape.js @@ -110,6 +110,7 @@ var Shape = Item.extend(/** @lends Shape# */{ if (radius === this._radius) return; var size = radius * 2; + this._radius = radius; this._size.set(size, size); } else { radius = Size.read(arguments);