diff options
Diffstat (limited to 'js/tools/SelectionTool.js')
-rwxr-xr-x | js/tools/SelectionTool.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/tools/SelectionTool.js b/js/tools/SelectionTool.js index 6d8ff175..a2d8510e 100755 --- a/js/tools/SelectionTool.js +++ b/js/tools/SelectionTool.js | |||
@@ -123,14 +123,14 @@ var SelectionTool = exports.SelectionTool = Montage.create(ModifierToolBase, { | |||
123 | this.doDraw(event); | 123 | this.doDraw(event); |
124 | } else { | 124 | } else { |
125 | this._showFeedbackOnMouseMove(event); | 125 | this._showFeedbackOnMouseMove(event); |
126 | // if(this._canSnap) | 126 | if(this._canSnap) |
127 | // { | 127 | { |
128 | // this.doSnap(event); | 128 | this.doSnap(event); |
129 | // } | 129 | } |
130 | } | 130 | } |
131 | 131 | ||
132 | this.DrawHandles(this._delta); | 132 | this.DrawHandles(this._delta); |
133 | if(this._canSnap && this._isDrawing) | 133 | if(this._canSnap) |
134 | { | 134 | { |
135 | this.application.ninja.stage.stageDeps.snapManager.drawLastHit(); | 135 | this.application.ninja.stage.stageDeps.snapManager.drawLastHit(); |
136 | } | 136 | } |