aboutsummaryrefslogtreecommitdiff
path: root/js/tools/LineTool.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tools/LineTool.js')
-rwxr-xr-xjs/tools/LineTool.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/tools/LineTool.js b/js/tools/LineTool.js
index 3e9167fd..92352880 100755
--- a/js/tools/LineTool.js
+++ b/js/tools/LineTool.js
@@ -44,8 +44,8 @@ exports.LineTool = Montage.create(ShapeTool, {
44 } 44 }
45 45
46 this._strokeSize = ShapesController.GetValueInPixels(this.options.strokeSize.value, this.options.strokeSize.units, null); 46 this._strokeSize = ShapesController.GetValueInPixels(this.options.strokeSize.value, this.options.strokeSize.units, null);
47 if (this.application.ninja.colorController.colorToolbar.stroke.color) 47 if (this.options.stroke.color)
48 this._strokeColor = this.application.ninja.colorController.colorToolbar.stroke.color.css; 48 this._strokeColor = this.options.stroke.color.css;
49 else 49 else
50 this._strokeColor = [0,0,0,1]; 50 this._strokeColor = [0,0,0,1];
51 this.startDraw(event); 51 this.startDraw(event);
@@ -214,7 +214,7 @@ exports.LineTool = Montage.create(ShapeTool, {
214 var left = Math.round(midPt[0] - 0.5*w); 214 var left = Math.round(midPt[0] - 0.5*w);
215 var top = Math.round(midPt[1] - 0.5*h); 215 var top = Math.round(midPt[1] - 0.5*h);
216 216
217 var strokeColor = this.application.ninja.colorController.colorToolbar.stroke.webGlColor; 217 var strokeColor = this.options.stroke.webGlColor;
218 // for default stroke and fill/no materials 218 // for default stroke and fill/no materials
219 var strokeMaterial = null; 219 var strokeMaterial = null;
220 220