diff options
author | hwc487 | 2012-03-06 16:03:26 -0800 |
---|---|---|
committer | hwc487 | 2012-03-06 16:03:26 -0800 |
commit | 855e8727b147771ff7b05e71bed481e65fe4b6b0 (patch) | |
tree | 60d7f091fcf0870495aeaa63748492dbd558619d /js/tools/modifier-tool-base.js | |
parent | 1207735f05f202b5bdc5f70c73445f8e0934a227 (diff) | |
parent | 4f498b43264327f5886e0370bd3536453d47570a (diff) | |
download | ninja-855e8727b147771ff7b05e71bed481e65fe4b6b0.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into integration
Conflicts:
js/preloader/Preloader.js
Diffstat (limited to 'js/tools/modifier-tool-base.js')
-rwxr-xr-x | js/tools/modifier-tool-base.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/js/tools/modifier-tool-base.js b/js/tools/modifier-tool-base.js index 7d946cb0..7892d015 100755 --- a/js/tools/modifier-tool-base.js +++ b/js/tools/modifier-tool-base.js | |||
@@ -133,6 +133,13 @@ exports.ModifierToolBase = Montage.create(DrawingTool, { | |||
133 | // a snap on the mouse down | 133 | // a snap on the mouse down |
134 | var hitRec = snapManager.snap(point.x, point.y, do3DSnap); | 134 | var hitRec = snapManager.snap(point.x, point.y, do3DSnap); |
135 | 135 | ||
136 | // TODO - Check that hitRec's element matches element that browser says we clicked on | ||
137 | var elt = this.application.ninja.stage.GetElement(event); | ||
138 | if(elt !== hitRec.getElement()) | ||
139 | { | ||
140 | hitRec = snapManager.findHitRecordForElement(elt); | ||
141 | } | ||
142 | |||
136 | // we don't want to snap to selected objects during the drag | 143 | // we don't want to snap to selected objects during the drag |
137 | var len = this._targets.length; | 144 | var len = this._targets.length; |
138 | for(var i=0; i<len; i++) | 145 | for(var i=0; i<len; i++) |