diff options
author | Jon Reid | 2012-03-06 14:14:01 -0800 |
---|---|---|
committer | Jon Reid | 2012-03-06 14:14:01 -0800 |
commit | 60bba95eaffa8b5c741c6c85fb84b327cd75d6c3 (patch) | |
tree | 0087ad093418638ff1d0b4362715bd7b2d147eba /js/tools/modifier-tool-base.js | |
parent | d64f8c9fc1dd5fb15ad78ad61bed1ef3736321bb (diff) | |
parent | 342fb451bd251358068a0dcb10e9dc218b79a176 (diff) | |
download | ninja-60bba95eaffa8b5c741c6c85fb84b327cd75d6c3.tar.gz |
Merge remote-tracking branch 'ninja-jduran/TimelineUber' into Timeline-uber
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++) |