aboutsummaryrefslogtreecommitdiff
path: root/js/tools/ShapeTool.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-05-02 14:53:21 -0700
committerValerio Virgillito2012-05-02 14:53:21 -0700
commit691beb1c39fc0baa683f1fc56cbc519fe58f306d (patch)
treefeb28083c4540ea6298a8d6d3410ffa0e9c15527 /js/tools/ShapeTool.js
parente3fa4c7db57b63c5ac604c9420062de5d0fe413a (diff)
parent355656cac2fa1a025ad97791ea095a54cebdff71 (diff)
downloadninja-691beb1c39fc0baa683f1fc56cbc519fe58f306d.tar.gz
Merge pull request #186 from mqg734/StageWebTemplate
More grid drawing fixes for new web template workflow. Also, adding back ability to draw when working plane changes.
Diffstat (limited to 'js/tools/ShapeTool.js')
-rwxr-xr-xjs/tools/ShapeTool.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/js/tools/ShapeTool.js b/js/tools/ShapeTool.js
index 8f45891d..d2337000 100755
--- a/js/tools/ShapeTool.js
+++ b/js/tools/ShapeTool.js
@@ -106,6 +106,9 @@ exports.ShapeTool = Montage.create(DrawingTool, {
106 if(wasSelected) { 106 if(wasSelected) {
107 this.AddCustomFeedback(); 107 this.AddCustomFeedback();
108 this.application.ninja.elementMediator.addDelegate = this; 108 this.application.ninja.elementMediator.addDelegate = this;
109 if(this.application.ninja.currentSelectedContainer.nodeName === "CANVAS") {
110 this._targetedElement = this.application.ninja.currentSelectedContainer;
111 }
109 } else { 112 } else {
110 this.RemoveCustomFeedback(); 113 this.RemoveCustomFeedback();
111 this.application.ninja.elementMediator.addDelegate = null; 114 this.application.ninja.elementMediator.addDelegate = null;