diff options
Diffstat (limited to 'js/tools/RotateObject3DTool.js')
-rwxr-xr-x | js/tools/RotateObject3DTool.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/tools/RotateObject3DTool.js b/js/tools/RotateObject3DTool.js index 72af6eff..902cf05d 100755 --- a/js/tools/RotateObject3DTool.js +++ b/js/tools/RotateObject3DTool.js | |||
@@ -18,6 +18,7 @@ exports.RotateObject3DTool = Montage.create(Rotate3DToolBase, { | |||
18 | 18 | ||
19 | _initializeToolHandles: { | 19 | _initializeToolHandles: { |
20 | value: function() { | 20 | value: function() { |
21 | this.rotateStage = false; | ||
21 | if(!this._handles) | 22 | if(!this._handles) |
22 | { | 23 | { |
23 | this._handles = []; | 24 | this._handles = []; |
@@ -51,6 +52,7 @@ exports.RotateObject3DTool = Montage.create(Rotate3DToolBase, { | |||
51 | toolHandle._rotMat = Matrix.RotationZ( angle ); | 52 | toolHandle._rotMat = Matrix.RotationZ( angle ); |
52 | } | 53 | } |
53 | } | 54 | } |
55 | this._inLocalMode = (this.options.selectedMode === "rotateLocally"); | ||
54 | } | 56 | } |
55 | }, | 57 | }, |
56 | 58 | ||