diff --git a/dist/image-editor.js b/dist/image-editor.js index 2881c03..072bf7c 100644 --- a/dist/image-editor.js +++ b/dist/image-editor.js @@ -1253,6 +1253,10 @@ function ImageDataHandler(img) { var frameHandler = img.canvas.getViewport().getFrameHandler(); returnValue.edge = frameHandler.getFrameType(); returnValue.framed = returnValue.edge !== 'none'; + } else if (img.canvas.__type === 'wallpaper') { + // repeating wallpapers should not have any cropping + returnValue.x = 0; + returnValue.y = 0; } return returnValue;