mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Fix switchmix references on UDDF export
The switchmix values must be concatenated properly. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
453aeab470
commit
cb0762a3ff
1 changed files with 2 additions and 2 deletions
|
@ -385,7 +385,7 @@
|
|||
<xsl:if test="@name = 'gaschange'">
|
||||
<switchmix>
|
||||
<xsl:attribute name="ref">
|
||||
<xsl:value-of select="'mix' + @value"/>
|
||||
<xsl:value-of select="concat('mix', @value)"/>
|
||||
</xsl:attribute>
|
||||
</switchmix>
|
||||
</xsl:if>
|
||||
|
@ -435,7 +435,7 @@
|
|||
<xsl:for-each select="preceding-sibling::event[@time = $time and @name='gaschange']/@value">
|
||||
<switchmix>
|
||||
<xsl:attribute name="ref">
|
||||
<xsl:value-of select="'mix' + ."/>
|
||||
<xsl:value-of select="concat('mix', .)"/>
|
||||
</xsl:attribute>
|
||||
</switchmix>
|
||||
</xsl:for-each>
|
||||
|
|
Loading…
Reference in a new issue