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:when test="$delta != '' and $delta > 0">
<xsl:call-template name="sec2time"> <xsl:call-template name="sec2time">
<xsl:with-param name="timeSec"> <xsl:with-param name="timeSec">
<xsl:value-of select="$lineno * 1"/> <xsl:value-of select="$lineno * $delta"/>
</xsl:with-param> </xsl:with-param>
</xsl:call-template> </xsl:call-template>
</xsl:when> </xsl:when>