summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2012-05-14 19:01:38 +0000
committerJazzyNico <nicoduf@yahoo.fr>2012-05-14 19:01:38 +0000
commit1c723ec8e3f7a16614647200119591970e247b44 (patch)
tree85467ecbe5c5a828768ea2e5def2eca73b1ae064
parentFix for 986446 : Measure toolbar header include (diff)
downloadinkscape-1c723ec8e3f7a16614647200119591970e247b44.tar.gz
inkscape-1c723ec8e3f7a16614647200119591970e247b44.zip
XAML. Fix for Bug #999059 (radial gradients don't get properly exported to XAML) by Oxidative.
(bzr r11362)
-rwxr-xr-xshare/extensions/svg2xaml.xsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/svg2xaml.xsl b/share/extensions/svg2xaml.xsl
index 76d1b8532..37096a4d3 100755
--- a/share/extensions/svg2xaml.xsl
+++ b/share/extensions/svg2xaml.xsl
@@ -728,7 +728,7 @@ exclude-result-prefixes="rdf xlink xs exsl libxslt">
<xsl:choose>
<xsl:when test="@xlink:href">
<xsl:variable name="reference_id" select="@xlink:href" />
- <xsl:apply-templates mode="forward" select="//*[name(.) = 'radialGradient' and $reference_id = concat('#', @id)]/*" />
+ <xsl:apply-templates mode="forward" select="//*[name(.) = 'linearGradient' and $reference_id = concat('#', @id)]/*" />
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode="forward" />