diff options
| author | Josh Andler <scislac@gmail.com> | 2009-11-17 18:53:47 +0000 |
|---|---|---|
| committer | scislac <scislac@users.sourceforge.net> | 2009-11-17 18:53:47 +0000 |
| commit | a37e845a3ef04d100816c5eccfe0aff9780cdc70 (patch) | |
| tree | 2000c80ea54bfc073844db703a7aaa317489ed31 | |
| parent | Update scour from 0.21 to 0.22, see http://codedread.com/scour/release-notes.... (diff) | |
| download | inkscape-a37e845a3ef04d100816c5eccfe0aff9780cdc70.tar.gz inkscape-a37e845a3ef04d100816c5eccfe0aff9780cdc70.zip | |
One line fix from ~suv (Ted knows) to fix our XCF export. Fixes 484016.
(bzr r8834)
| -rwxr-xr-x | share/extensions/gimp_xcf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/gimp_xcf.py b/share/extensions/gimp_xcf.py index 121cb360d..22e45006b 100755 --- a/share/extensions/gimp_xcf.py +++ b/share/extensions/gimp_xcf.py @@ -86,7 +86,7 @@ class MyEffect(inkex.Effect): gridSpacingFunc = '(gimp-image-grid-set-spacing img %s %s)' % (spacingX[:-2], spacingY[:-2]) gridOriginFunc = '(gimp-image-grid-set-offset img %s %s)'% (originX[:-2], originY[:-2]) - area = '--export-area-canvas' + area = '--export-area-page' pngs = [] names = [] path = "/svg:svg/*[name()='g' or @style][@id]" |
