-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix to retrieve grid settings correctly (#6)
* Fix to retrieve grid settings correctly * Rename to #adjustFrameAfterEditIntegral * Fix typo * New feature "Snap to Pixel Grid"
- Loading branch information
Showing
2 changed files
with
40 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
{ | ||
"name": "StickyGrid", | ||
"commands": [ | ||
{ | ||
"script": "script.cocoascript", | ||
"handler": "snapToGrid", | ||
"shortcut": "ctrl cmd g", | ||
"name": "Snap to Grid", | ||
"identifier": "snaptogrid" | ||
} | ||
], | ||
"commands": [{ | ||
"script": "script.cocoascript", | ||
"handler": "snapToGrid", | ||
"shortcut": "ctrl cmd g", | ||
"name": "Snap to Grid", | ||
"identifier": "snaptogrid" | ||
}, { | ||
"script": "script.cocoascript", | ||
"handler": "snapToPixelGrid", | ||
"shortcut": "ctrl cmd x", | ||
"name": "Snap to Pixel Grid", | ||
"identifier": "snaptopixelgrid" | ||
}], | ||
"menu": { | ||
"items": [ | ||
"snaptogrid" | ||
"snaptogrid", | ||
"snaptopixelgrid" | ||
], | ||
"title": "StickyGrid" | ||
}, | ||
"identifier": "co.randompaper.sketch.stickygrid", | ||
"version": "2.0.0", | ||
"version": "3.0.0", | ||
"description": "Sketch plugin to make paths be snapped to grid.", | ||
"author": "Yasuaki Uechi", | ||
"authorEmail": "[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters