diff options
author | Nivesh Rajbhandari | 2012-07-09 11:34:24 -0700 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-07-09 11:34:24 -0700 |
commit | eff1851b2189bea8b89065980d02541cecea5ddf (patch) | |
tree | ccc68111fd75e59c6d4764eff1c62e04bf14693f /js | |
parent | 2bae1b3148233288ec0bc50876935bdfea1f288c (diff) | |
download | ninja-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')
-rwxr-xr-x | js/helper-classes/3D/draw-utils.js | 1 |
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 | ||