diff options
| author | David Mathog <> | 2012-10-12 23:00:15 +0000 |
|---|---|---|
| committer | ~suv <suv-sf@users.sourceforge.net> | 2012-10-12 23:00:15 +0000 |
| commit | 4584fa234ef3d7fbc42532031fb5eb7e26405836 (patch) | |
| tree | 403b6a5dedc61fd417f4387fa9e3d0beb39357fd /src | |
| parent | merge from trunk (r11787) (diff) | |
| download | inkscape-4584fa234ef3d7fbc42532031fb5eb7e26405836.tar.gz inkscape-4584fa234ef3d7fbc42532031fb5eb7e26405836.zip | |
Fix SVG formatting (EMF import):
A typo caused two extra spaces to be appended on the end of any text
which was read in from an EMF file.
(bzr r11668.1.29)
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/internal/emf-inout.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/internal/emf-inout.cpp b/src/extension/internal/emf-inout.cpp index e1b20ee23..295bbd5ea 100644 --- a/src/extension/internal/emf-inout.cpp +++ b/src/extension/internal/emf-inout.cpp @@ -2775,7 +2775,7 @@ std::cout << "BEFORE DRAW" << "\"\n"; ts << " >"; ts << escaped_text; - ts << " </tspan>"; + ts << "</tspan>"; ts << "</text>\n"; *(d->outsvg) += ts.str().c_str(); |
