diff options
author | hwc487 | 2012-02-27 10:28:03 -0800 |
---|---|---|
committer | hwc487 | 2012-02-27 10:28:03 -0800 |
commit | 8578322c60adaaf65f37ba96f2a0f7ed9de8e1dc (patch) | |
tree | cb167012f42f9c29879951c4d86c44ed7a447301 /js/helper-classes/RDGE/GLCircle.js | |
parent | d0661d6c587aced68a68e36a5ec4e81f8a2096e8 (diff) | |
download | ninja-8578322c60adaaf65f37ba96f2a0f7ed9de8e1dc.tar.gz |
Fixed various rendering bugs.
Diffstat (limited to 'js/helper-classes/RDGE/GLCircle.js')
-rwxr-xr-x | js/helper-classes/RDGE/GLCircle.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/helper-classes/RDGE/GLCircle.js b/js/helper-classes/RDGE/GLCircle.js index 656657f6..15ed6b6d 100755 --- a/js/helper-classes/RDGE/GLCircle.js +++ b/js/helper-classes/RDGE/GLCircle.js | |||
@@ -47,8 +47,8 @@ function GLCircle() | |||
47 | 47 | ||
48 | this._strokeWidth = strokeSize; | 48 | this._strokeWidth = strokeSize; |
49 | this._innerRadius = innerRadius; | 49 | this._innerRadius = innerRadius; |
50 | this._strokeColor = strokeColor; | 50 | if (strokeColor) this._strokeColor = strokeColor; |
51 | this._fillColor = fillColor; | 51 | if (fillColor) this._fillColor = fillColor; |
52 | 52 | ||
53 | this._strokeStyle = strokeStyle; | 53 | this._strokeStyle = strokeStyle; |
54 | } | 54 | } |