aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/3D
diff options
context:
space:
mode:
authorNivesh Rajbhandari2012-07-09 11:34:24 -0700
committerNivesh Rajbhandari2012-07-09 11:34:24 -0700
commiteff1851b2189bea8b89065980d02541cecea5ddf (patch)
treeccc68111fd75e59c6d4764eff1c62e04bf14693f /js/helper-classes/3D
parent2bae1b3148233288ec0bc50876935bdfea1f288c (diff)
downloadninja-eff1851b2189bea8b89065980d02541cecea5ddf.tar.gz
IKNINJA-1246 - Line drawing feedback disappears when using no-color or gradient for stroke color.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/helper-classes/3D')
-rwxr-xr-xjs/helper-classes/3D/draw-utils.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/helper-classes/3D/draw-utils.js b/js/helper-classes/3D/draw-utils.js
index 9c4f31b7..a2ca3729 100755
--- a/js/helper-classes/3D/draw-utils.js
+++ b/js/helper-classes/3D/draw-utils.js
@@ -805,6 +805,7 @@ var DrawUtils = exports.DrawUtils = Montage.create(Component, {
805 var obj = this._stateArray.pop(); 805 var obj = this._stateArray.pop();
806 this._lineColor = obj._lineColor; 806 this._lineColor = obj._lineColor;
807 this._drawingContext.lineWidth = obj._lineWidth; 807 this._drawingContext.lineWidth = obj._lineWidth;
808 this._drawingContext.strokeStyle = obj._lineColor;
808 } 809 }
809 }, 810 },
810 811