diff options
author | Valerio Virgillito | 2012-04-26 15:33:48 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-04-26 15:33:48 -0700 |
commit | 238586be0df568c6804268d97bf9d3ef7cd33fda (patch) | |
tree | 582041d53a3d91ac50771849f3e4e26c85d69b81 /js/tools/modifier-tool-base.js | |
parent | 01e17da83667b6ad808721687b2dd9b67f1812e6 (diff) | |
download | ninja-238586be0df568c6804268d97bf9d3ef7cd33fda.tar.gz |
Simplifying the getElement method from stage and adding an exclusion list to the new template
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/tools/modifier-tool-base.js')
-rwxr-xr-x | js/tools/modifier-tool-base.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tools/modifier-tool-base.js b/js/tools/modifier-tool-base.js index 2e006c35..d023206a 100755 --- a/js/tools/modifier-tool-base.js +++ b/js/tools/modifier-tool-base.js | |||
@@ -134,7 +134,7 @@ exports.ModifierToolBase = Montage.create(DrawingTool, { | |||
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 | 136 | // TODO - Check that hitRec's element matches element that browser says we clicked on |
137 | var elt = this.application.ninja.stage.GetSelectableElement(event); | 137 | var elt = this.application.ninja.stage.getElement(event, true); |
138 | if(elt !== hitRec.getElement()) | 138 | if(elt !== hitRec.getElement()) |
139 | { | 139 | { |
140 | hitRec = snapManager.findHitRecordForElement(elt); | 140 | hitRec = snapManager.findHitRecordForElement(elt); |