Timed Text 1.0 properties - put description in description field (not title)

This commit is contained in:
niksedk 2014-09-15 20:21:12 +02:00
parent 6e4e55f357
commit c38339b434

View File

@ -168,7 +168,7 @@ namespace Nikse.SubtitleEdit.Forms
}
var desc = _xml.CreateElement("ttml", "desc", _nsmgr.LookupNamespace("ttml"));
desc.InnerText = textBoxTitle.Text;
desc.InnerText = textBoxDescription.Text;
metadata.AppendChild(desc);
}