diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2019-11-08 08:15:45 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2019-11-08 08:15:45 +0000 |
| commit | c2f0d511571352125734545fbd7a256cfbc2b4aa (patch) | |
| tree | 5f5a6f5c20826d09e75ab653d97efc790f843498 | |
| parent | Set "origin" (ua, user, author) for linked stylesheets. (diff) | |
| download | inkscape-c2f0d511571352125734545fbd7a256cfbc2b4aa.tar.gz inkscape-c2f0d511571352125734545fbd7a256cfbc2b4aa.zip | |
Use correct function to add additional style sheets to style sheet list.
| -rw-r--r-- | src/object/sp-style-elem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object/sp-style-elem.cpp b/src/object/sp-style-elem.cpp index a8897fa44..f5432892c 100644 --- a/src/object/sp-style-elem.cpp +++ b/src/object/sp-style-elem.cpp @@ -482,7 +482,7 @@ void SPStyleElem::read_content() { cr_cascade_set_sheet (document->getStyleCascade(), document->getStyleSheet(), ORIGIN_AUTHOR); } else { // If not the first, then chain up this style_sheet - cr_stylesheet_append_import (document->getStyleSheet(), style_sheet); + cr_stylesheet_append_stylesheet (document->getStyleSheet(), style_sheet); } } else { cr_stylesheet_destroy (style_sheet); |
