aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorPushkar Joshi2012-06-07 11:19:35 -0700
committerPushkar Joshi2012-06-07 11:19:35 -0700
commitce9439ffaa82d5a2dd93dfa39da4f513c31f6824 (patch)
tree705849d8a193c9790a06b6bdf92e6068bb019528 /assets
parente3f00a9957a3446bb6b85f54f4cd06fe2fe15940 (diff)
downloadninja-ce9439ffaa82d5a2dd93dfa39da4f513c31f6824.tar.gz
fix compile error that was preventing non-gradient brush strokes from being rendered in runtime
Diffstat (limited to 'assets')
-rw-r--r--assets/canvas-runtime.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/canvas-runtime.js b/assets/canvas-runtime.js
index 76332bcb..fe5f839c 100644
--- a/assets/canvas-runtime.js
+++ b/assets/canvas-runtime.js
@@ -2174,7 +2174,7 @@ NinjaCvsRt.RuntimeBrushStroke = Object.create(NinjaCvsRt.RuntimeGeomObj, {
2174 render: { 2174 render: {
2175 value: function() { 2175 value: function() {
2176 //vars for gradient code 2176 //vars for gradient code
2177 var w,h; 2177 var w,h,useBuildColor=false;
2178 2178
2179 // get the world 2179 // get the world
2180 var world = this.getWorld(); 2180 var world = this.getWorld();