diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2015-05-07 15:42:37 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2015-05-07 15:42:37 +0000 |
| commit | 3e3607e37584c4688dcaf35bac415a409893adef (patch) | |
| tree | 422564a982e4e27d02f43ec64f814c90e28f4fe6 | |
| parent | fix sorts (diff) | |
| download | inkscape-3e3607e37584c4688dcaf35bac415a409893adef.tar.gz inkscape-3e3607e37584c4688dcaf35bac415a409893adef.zip | |
Exporting. Fix for Bug #1452560 (Rectangles missing from saved SIF).
Fixed bugs:
- https://launchpad.net/bugs/1452560
(bzr r14120)
| -rwxr-xr-x | share/extensions/synfig_prepare.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/synfig_prepare.py b/share/extensions/synfig_prepare.py index c6ad48c97..ebc50fd8e 100755 --- a/share/extensions/synfig_prepare.py +++ b/share/extensions/synfig_prepare.py @@ -86,7 +86,7 @@ class InkscapeActionGroup(object): def select_id(self, object_id): """Select object with given id""" - self.command += "--select='%s' " % (object_id) + self.command += "--select=%s " % (object_id) if not self.has_selection: self.has_selection = True |
