Fix for last commit...

This commit is contained in:
Nikolaj Olsson 2016-03-13 21:38:35 +01:00
parent bb62356439
commit 5ffbaad80a

View File

@ -74,7 +74,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
paragraph.AppendChild(num); paragraph.AppendChild(num);
XmlNode dur = xml.CreateElement("dur"); XmlNode dur = xml.CreateElement("dur");
num.InnerText = EncodeDuration(p.Duration); dur.InnerText = EncodeDuration(p.Duration);
paragraph.AppendChild(dur); paragraph.AppendChild(dur);
XmlNode textNode = xml.CreateElement("text"); XmlNode textNode = xml.CreateElement("text");