Minor fix for SSA

Related to  #5290
This commit is contained in:
niksedk 2021-08-28 23:09:38 +02:00
parent 8f809b7eab
commit 893385e823

View File

@ -191,6 +191,14 @@ namespace Nikse.SubtitleEdit.Core.Common
{
sb.Append(Angle.ToString(CultureInfo.InvariantCulture));
}
else if (f == "alignment")
{
sb.Append(Alignment);
}
else if (f == "alphalevel")
{
sb.Append("0");
}
sb.Append(',');
}