diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2019-11-15 09:42:07 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2019-11-15 09:42:07 +0000 |
| commit | c8cd9669adc61307d398513896501078c923e7b2 (patch) | |
| tree | 0b26a7af2dad48486cc3b6c9b99b1ad6d43d3938 | |
| parent | Update Hungarian translation (100%) (diff) | |
| download | inkscape-c8cd9669adc61307d398513896501078c923e7b2.tar.gz inkscape-c8cd9669adc61307d398513896501078c923e7b2.zip | |
Correct order of stylesheet list insertion (after bug fix to libcroco).
| -rw-r--r-- | src/inkscape.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inkscape.cpp b/src/inkscape.cpp index 04eb293c8..fa88f035a 100644 --- a/src/inkscape.cpp +++ b/src/inkscape.cpp @@ -643,7 +643,7 @@ void Application::readStyleSheets(bool forceupd) for (unsigned i = 0; i < root->childCount(); ++i) { Inkscape::XML::Node *child = root->nthChild(i); if (child && strcmp(child->name(), "svg:style") == 0) { - styles.insert(styles.begin(), child); + styles.push_back(child); } } if (forceupd || styles.size() > 1) { |
