diff options
| author | mgth <> | 2017-06-05 07:03:36 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2017-06-05 07:03:36 +0000 |
| commit | a41ee9584d585bbd7b16607f37b8eeee9225be49 (patch) | |
| tree | ff540df6247b3c9045c0869f29f66cfd74c2fd83 | |
| parent | Porting the pre-92 file update message from 0.92.x to trunk: (diff) | |
| download | inkscape-a41ee9584d585bbd7b16607f37b8eeee9225be49.tar.gz inkscape-a41ee9584d585bbd7b16607f37b8eeee9225be49.zip | |
[Bug #1695016] Xaml export misses some radialGradients.
Fixed bugs:
- https://launchpad.net/bugs/1695016
(bzr r15730)
| -rw-r--r-- | share/extensions/svg2xaml.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/svg2xaml.xsl b/share/extensions/svg2xaml.xsl index abc519065..e4a3ca3f1 100644 --- a/share/extensions/svg2xaml.xsl +++ b/share/extensions/svg2xaml.xsl @@ -765,7 +765,7 @@ exclude-result-prefixes="rdf xlink xs exsl libxslt inkscape"> <xsl:choose> <xsl:when test="@xlink:href"> <xsl:variable name="reference_id" select="@xlink:href" /> - <xsl:apply-templates mode="forward" select="//*[name(.) = 'linearGradient' and $reference_id = concat('#', @id)]/*" /> + <xsl:apply-templates mode="forward" select="//*[name(.) = 'radialGradient' and $reference_id = concat('#', @id)]/*" /> </xsl:when> <xsl:otherwise> <xsl:apply-templates mode="forward" /> |
