Skip to content

Commit

Permalink
Merge pull request #13 from wayneooone/patch-2
Browse files Browse the repository at this point in the history
Fixed the bug of sketch 3.4
  • Loading branch information
tylergaw committed Apr 12, 2016
2 parents a9e4161 + cc01ba2 commit 951fd28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Icon Stamper.sketchplugin
Expand Up @@ -12,7 +12,7 @@ if (graphics != null) {
while (board = fastLoop.nextObject()) {
var f = board.frame();
var size = f.width();
var offset = 2000;
var offset = 100;

if (size < sourceArtboardSize) {

Expand All @@ -37,7 +37,7 @@ if (graphics != null) {
newGroup.setName(groupName);

// Move the artboard back.
f.subtractX(offset);
f.addX(offset);
}
}

Expand Down

0 comments on commit 951fd28

Please sign in to comment.