Skip to content

Commit

Permalink
Fix for selection
Browse files Browse the repository at this point in the history
Fix for selection
  • Loading branch information
design4use committed May 23, 2018
1 parent 813d8de commit 44b9b8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions VERSIONHISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Update history

##### May 19, 2018
* 2.04 version, updated to support Sketch 50 and SketchRunner

##### Nov 28, 2016
* 2.03 version, updated to also support v41 and earlier

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ var segmentCircle = function(rCirc, numSegs, nThick, angOmit){
if (nThick > 1) {styleShapeArea(shape, c)} else {styleShape(shape, c)}
shape.setName("Segment " + (i + 1))
gr.addLayers([shape]);
//gr.adjustToFit();
}
placeLayer(gr)
}
Expand Down Expand Up @@ -410,6 +411,7 @@ function mkGroup(parentL, name) {
}

var placeLayer = function(lyr){
rszHndls(lyr)
var rL = lyr.rect();
var v = getViewF();
var so = [doc scrollOrigin];
Expand All @@ -419,7 +421,7 @@ var placeLayer = function(lyr){
rL.origin.x = vX
rL.origin.y = vY
lyr.setRect(rL)
rszHndls(lyr)
//rszHndls(lyr)
}

var rszHndls = function(lyr){
Expand Down

0 comments on commit 44b9b8f

Please sign in to comment.