diff options
author | Valerio Virgillito | 2012-04-13 13:37:17 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-04-13 13:37:17 -0700 |
commit | 5561e7cc43ae9f7cb9d1217ac02f9f136000e79c (patch) | |
tree | c058203a1a2e33385aab2136a32ca6988d015c4f /js/tools/modifier-tool-base.js | |
parent | 0a5504ebe8ada3ff19ff9bbf4d1ee820e1ba90d1 (diff) | |
download | ninja-5561e7cc43ae9f7cb9d1217ac02f9f136000e79c.tar.gz |
fixed stage rotation
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 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/js/tools/modifier-tool-base.js b/js/tools/modifier-tool-base.js index 6de5d06c..8cd21a29 100755 --- a/js/tools/modifier-tool-base.js +++ b/js/tools/modifier-tool-base.js | |||
@@ -809,7 +809,10 @@ exports.ModifierToolBase = Montage.create(DrawingTool, { | |||
809 | if(!this._activateOriginHandle) | 809 | if(!this._activateOriginHandle) |
810 | { | 810 | { |
811 | this.application.ninja.stage.drawNow = true; | 811 | this.application.ninja.stage.drawNow = true; |
812 | var canSnap = this._canSnap; | ||
813 | this._canSnap = true; | ||
812 | this.doSelection(event); | 814 | this.doSelection(event); |
815 | this._canSnap = canSnap; | ||
813 | } | 816 | } |
814 | } | 817 | } |
815 | 818 | ||