diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2015-12-02 11:09:13 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2015-12-02 11:09:13 +0000 |
| commit | 545524ad9caf0e7d1d9a26db699e834317c49eab (patch) | |
| tree | 62b40524bf3e9813f6d0f37699d2017acb4f6969 | |
| parent | Win32. Temporary workaround for Bug #1156664 (Compile against external libpot... (diff) | |
| download | inkscape-545524ad9caf0e7d1d9a26db699e834317c49eab.tar.gz inkscape-545524ad9caf0e7d1d9a26db699e834317c49eab.zip | |
XAML. Fix for Bug #1521686 (Exported Xaml mistaken due to wrong format number (locale)).
Fixed bugs:
- https://launchpad.net/bugs/1521686
(bzr r14497)
| -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 c384b022f..abc519065 100644 --- a/share/extensions/svg2xaml.xsl +++ b/share/extensions/svg2xaml.xsl @@ -2385,7 +2385,7 @@ exclude-result-prefixes="rdf xlink xs exsl libxslt inkscape"> </xsl:choose> </xsl:variable> <xsl:if test="$top_val != '' and $size_val != ''"> - <xsl:value-of select="$top_val - $size_val" /> + <xsl:value-of select='format-number($top_val - $size_val, "#.#")' /> </xsl:if> </xsl:attribute> </xsl:if> |
