1
0
Fork 0
mirror of https://github.com/subsurface/subsurface.git synced 2025-02-19 22:16:15 +00:00

CSV import: use the delta value instead of 1 sec

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Miika Turkia 2015-10-01 07:51:09 -04:00 committed by Dirk Hohndel
parent efa4dc3c9a
commit 058575bbbc

View file

@ -156,7 +156,7 @@
<xsl:when test="$delta != '' and $delta > 0">
<xsl:call-template name="sec2time">
<xsl:with-param name="timeSec">
<xsl:value-of select="$lineno * 1"/>
<xsl:value-of select="$lineno * $delta"/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>