aboutsummaryrefslogtreecommitdiff
path: root/js/tools/modifier-tool-base.js
diff options
context:
space:
mode:
authorJonathan Duran2012-05-31 08:54:48 -0700
committerJonathan Duran2012-05-31 08:54:48 -0700
commitf297093b5bfa62c9832829751a12f0e556bb5cc0 (patch)
tree6e04cdf142cb1b36e2197970c9dc2141017a2be7 /js/tools/modifier-tool-base.js
parent9253e2ce98d748edd8c3929f113a597923960387 (diff)
parentd49c909cff7f0c5e5d0b127ad84a2fefc6677dc6 (diff)
downloadninja-f297093b5bfa62c9832829751a12f0e556bb5cc0.tar.gz
Merge branch 'refs/heads/NINJAmaster' into TimelineUber
Conflicts: js/panels/Timeline/Layer.reel/Layer.js js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js js/panels/properties.reel/properties.js Signed-off-by: Jonathan Duran <jduran@motorola.com>
Diffstat (limited to 'js/tools/modifier-tool-base.js')
-rwxr-xr-xjs/tools/modifier-tool-base.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/tools/modifier-tool-base.js b/js/tools/modifier-tool-base.js
index d023206a..6aea77aa 100755
--- a/js/tools/modifier-tool-base.js
+++ b/js/tools/modifier-tool-base.js
@@ -39,7 +39,7 @@ exports.ModifierToolBase = Montage.create(DrawingTool, {
39 return this._clickedObject; 39 return this._clickedObject;
40 }, 40 },
41 set: function (value) { 41 set: function (value) {
42 if(value === this.application.ninja.currentDocument.documentRoot) 42 if(value === this.application.ninja.currentDocument.model.documentRoot)
43 { 43 {
44 this._clickedObject = this._target; 44 this._clickedObject = this._target;
45 } 45 }
@@ -64,7 +64,7 @@ exports.ModifierToolBase = Montage.create(DrawingTool, {
64 value: function(hitRec) 64 value: function(hitRec)
65 { 65 {
66 var elt = hitRec.getElt(); 66 var elt = hitRec.getElt();
67 if(elt === this.application.ninja.currentDocument.documentRoot) 67 if(elt === this.application.ninja.currentDocument.model.documentRoot)
68 { 68 {
69 elt = this._target; 69 elt = this._target;
70 } 70 }
@@ -531,7 +531,7 @@ exports.ModifierToolBase = Montage.create(DrawingTool, {
531 531
532 snapManager.enableSnapAlign( snapManager.snapAlignEnabledAppLevel() ); 532 snapManager.enableSnapAlign( snapManager.snapAlignEnabledAppLevel() );
533 if ( snapManager.snapAlignEnabled() && this._clickedObject && 533 if ( snapManager.snapAlignEnabled() && this._clickedObject &&
534 (this._clickedObject !== this.application.ninja.currentDocument.documentRoot) ) 534 (this._clickedObject !== this.application.ninja.currentDocument.model.documentRoot) )
535 { 535 {
536 var alignBounds = !hitRec || (hitRec.getType() == hitRec.SNAP_TYPE_STAGE) || hitRec.isSomeGridTypeSnap(); 536 var alignBounds = !hitRec || (hitRec.getType() == hitRec.SNAP_TYPE_STAGE) || hitRec.isSomeGridTypeSnap();
537 if (alignBounds) 537 if (alignBounds)
@@ -776,7 +776,7 @@ exports.ModifierToolBase = Montage.create(DrawingTool, {
776 } 776 }
777 else 777 else
778 { 778 {
779 this.target = this.application.ninja.currentDocument.documentRoot; 779 this.target = this.application.ninja.currentDocument.model.documentRoot;
780 } 780 }
781// this._updateTargets(); 781// this._updateTargets();
782 } 782 }