diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-09-29 22:46:52 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-09-29 22:46:52 +0000 |
| commit | f4d8661226ac54c4aeba1b564bf5dbf8c181700c (patch) | |
| tree | 932d1d81dcdc45a25b3f16ee42391ce730fd9f42 /src/object/sp-factory.cpp | |
| parent | fix compiling issues (diff) | |
| download | inkscape-f4d8661226ac54c4aeba1b564bf5dbf8c181700c.tar.gz inkscape-f4d8661226ac54c4aeba1b564bf5dbf8c181700c.zip | |
Fix issue 872. LPE on rects is not rendering in browsers
Diffstat (limited to 'src/object/sp-factory.cpp')
| -rw-r--r-- | src/object/sp-factory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/object/sp-factory.cpp b/src/object/sp-factory.cpp index e773354f2..f0d84afb2 100644 --- a/src/object/sp-factory.cpp +++ b/src/object/sp-factory.cpp @@ -216,6 +216,8 @@ SPObject *SPFactory::createObject(std::string const& id) ret = new SPRadialGradient; else if (id == "svg:rect") ret = new SPRect; + else if (id == "rect") // LPE rect + ret = new SPRect; else if (id == "svg:svg") ret = new SPRoot; else if (id == "svg:script") |
