aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes
diff options
context:
space:
mode:
authorNivesh Rajbhandari2012-06-20 11:55:55 -0700
committerNivesh Rajbhandari2012-06-20 11:55:55 -0700
commit6a0a5f6e7dec5e8ced6e228e7bbfcc1181f46c26 (patch)
tree66a7cfd5a20ffedac9dc4daa0bc8245b8ae3a80a /js/helper-classes
parentb67defe4bc893da8cbed4003e0a4319c0ed2ed67 (diff)
downloadninja-6a0a5f6e7dec5e8ced6e228e7bbfcc1181f46c26.tar.gz
Fix for error when using ZoomTool.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/helper-classes')
-rwxr-xr-xjs/helper-classes/3D/draw-utils.js2
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 }