diff options
Diffstat (limited to 'js/tools/modifier-tool-base.js')
-rwxr-xr-x | js/tools/modifier-tool-base.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/js/tools/modifier-tool-base.js b/js/tools/modifier-tool-base.js index c772e36c..d12ba7d2 100755 --- a/js/tools/modifier-tool-base.js +++ b/js/tools/modifier-tool-base.js | |||
@@ -569,7 +569,11 @@ exports.ModifierToolBase = Montage.create(DrawingTool, { | |||
569 | var alignArray = new Array(); | 569 | var alignArray = new Array(); |
570 | snapManager.snapAlignToElementBounds( this._clickedObject, delta, alignArray ); | 570 | snapManager.snapAlignToElementBounds( this._clickedObject, delta, alignArray ); |
571 | if (alignArray.length > 0) | 571 | if (alignArray.length > 0) |
572 | { | ||
573 | alignArray.push( hitRec ); | ||
574 | snapManager.sortHitRecords( alignArray ); | ||
572 | hitRec = alignArray[0]; | 575 | hitRec = alignArray[0]; |
576 | } | ||
573 | } | 577 | } |
574 | } | 578 | } |
575 | 579 | ||