diff options
Diffstat (limited to 'picture.go')
-rw-r--r-- | picture.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,8 +31,8 @@ import ( func parseFormatPictureSet(formatSet string) (*formatPicture, error) { format := formatPicture{ FPrintsWithSheet: true, - XScale: 1.0, - YScale: 1.0, + XScale: 1, + YScale: 1, } err := json.Unmarshal(parseFormatSet(formatSet), &format) return &format, err |