diff options
| author | Joseph Da Silva <joseph.f.dasilva3@gmail.com> | 2019-03-20 15:52:46 +0000 |
|---|---|---|
| committer | Joseph Da Silva <joseph.f.dasilva3@gmail.com> | 2019-03-20 15:52:46 +0000 |
| commit | 7a6a1baa2b891c16edd7fbb86be3179f92adaee2 (patch) | |
| tree | 4c6dfc999dcc4ba532d4c6387f0ac52ac6019008 /src/xml/simple-document.cpp | |
| parent | GTK-3.22 dependency (diff) | |
| download | inkscape-7a6a1baa2b891c16edd7fbb86be3179f92adaee2.tar.gz inkscape-7a6a1baa2b891c16edd7fbb86be3179f92adaee2.zip | |
Fixed: circles and ellipses had wrong element names in XML editor (Issue #116)
Diffstat (limited to 'src/xml/simple-document.cpp')
| -rw-r--r-- | src/xml/simple-document.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/xml/simple-document.cpp b/src/xml/simple-document.cpp index d7a3d84db..c1227ac08 100644 --- a/src/xml/simple-document.cpp +++ b/src/xml/simple-document.cpp @@ -115,9 +115,15 @@ void SimpleDocument::notifyAttributeChanged(Node &node, } } +void SimpleDocument::notifyElementNameChanged(Node& node, GQuark old_name, GQuark new_name) +{ + if (_in_transaction) { + _log_builder.setElementName(node, old_name, new_name); + } } -} +} // end namespace XML +} // end namespace Inkscape /* Local Variables: |
