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/TranslateObject3DTool.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/TranslateObject3DTool.js')
-rwxr-xr-x | js/tools/TranslateObject3DTool.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tools/TranslateObject3DTool.js b/js/tools/TranslateObject3DTool.js index 72a55322..b4f55bd9 100755 --- a/js/tools/TranslateObject3DTool.js +++ b/js/tools/TranslateObject3DTool.js | |||
@@ -83,7 +83,7 @@ exports.TranslateObject3DTool = Montage.create(Translate3DToolBase, { | |||
83 | // Check that hitRec's element matches element that browser says we clicked on | 83 | // Check that hitRec's element matches element that browser says we clicked on |
84 | // TODO - This is still not working when using a handle that is on top of an | 84 | // TODO - This is still not working when using a handle that is on top of an |
85 | // element that is not currently selected | 85 | // element that is not currently selected |
86 | var elt = this.application.ninja.stage.GetSelectableElement(event); | 86 | var elt = this.application.ninja.stage.getElement(event, true); |
87 | if(elt && (elt !== hitRec.getElement())) | 87 | if(elt && (elt !== hitRec.getElement())) |
88 | { | 88 | { |
89 | hitRec = snapManager.findHitRecordForElement(elt); | 89 | hitRec = snapManager.findHitRecordForElement(elt); |