diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2015-09-05 21:48:55 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2015-09-05 21:48:55 +0000 |
| commit | 54b236cad1a35f3b572e11da3f34eb4e2476dd49 (patch) | |
| tree | 54f14b40920e01d828dbea0a11c00a5e467f4d34 /src/selection-chemistry.cpp | |
| parent | better ordering of setting the ids in the group to symbol code (diff) | |
| download | inkscape-54b236cad1a35f3b572e11da3f34eb4e2476dd49.tar.gz inkscape-54b236cad1a35f3b572e11da3f34eb4e2476dd49.zip | |
Quick fix for previous fix (i cannot understand why the previous fix still works fine, but it will be cleaner with this anyway)
(bzr r14344)
Diffstat (limited to 'src/selection-chemistry.cpp')
| -rw-r--r-- | src/selection-chemistry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp index c26a5bc4a..85b62957c 100644 --- a/src/selection-chemistry.cpp +++ b/src/selection-chemistry.cpp @@ -3108,7 +3108,7 @@ void sp_selection_symbol(SPDesktop *desktop, bool /*apply*/ ) symbol_repr->setAttribute("class", the_group->getAttribute("class")); Glib::ustring id = the_group->getAttribute("id"); the_group->setAttribute("id", id + "_transform"); - symbol_repr->setAttribute("id", the_group->getAttribute("id") ); + symbol_repr->setAttribute("id", id); // This should eventually be replaced by 'refX' and 'refY' once SVG WG approves it. // It is done here for round-tripping |
