diff options
author | Nivesh Rajbhandari | 2012-06-20 11:55:55 -0700 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-06-20 11:55:55 -0700 |
commit | 6a0a5f6e7dec5e8ced6e228e7bbfcc1181f46c26 (patch) | |
tree | 66a7cfd5a20ffedac9dc4daa0bc8245b8ae3a80a /js/helper-classes/3D | |
parent | b67defe4bc893da8cbed4003e0a4319c0ed2ed67 (diff) | |
download | ninja-6a0a5f6e7dec5e8ced6e228e7bbfcc1181f46c26.tar.gz |
Fix for error when using ZoomTool.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/helper-classes/3D')
-rwxr-xr-x | js/helper-classes/3D/draw-utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/helper-classes/3D/draw-utils.js b/js/helper-classes/3D/draw-utils.js index 177c844f..8ddd0d52 100755 --- a/js/helper-classes/3D/draw-utils.js +++ b/js/helper-classes/3D/draw-utils.js | |||
@@ -309,7 +309,7 @@ var DrawUtils = exports.DrawUtils = Montage.create(Component, { | |||
309 | } | 309 | } |
310 | 310 | ||
311 | // TODO - Remove this once all stage drawing is consolidated into a single draw cycle | 311 | // TODO - Remove this once all stage drawing is consolidated into a single draw cycle |
312 | if(!isChanging) { | 312 | if(!isChanging && this.application.ninja.toolsData.selectedToolInstance.captureSelectionDrawn) { |
313 | this.application.ninja.toolsData.selectedToolInstance.captureSelectionDrawn(null); | 313 | this.application.ninja.toolsData.selectedToolInstance.captureSelectionDrawn(null); |
314 | } | 314 | } |
315 | } | 315 | } |