Fix UI issue regarding FCP/image export - thx Christopher :)

This commit is contained in:
Nikolaj Olsson 2017-12-03 17:33:41 +01:00
parent 27c8a2c52e
commit 4d34d6f2ff

View File

@ -3913,6 +3913,11 @@ $DROP=[DROPVALUE]" + Environment.NewLine + Environment.NewLine +
internal int GetBottomMarginInPixels(Paragraph p)
{
if (!comboBoxBottomMargin.Visible)
{
return 20;
}
if (p != null && !string.IsNullOrEmpty(p.Extra) && _formatName == AdvancedSubStationAlpha.NameOfFormat || _formatName == SubStationAlpha.NameOfFormat)
{
var style = AdvancedSubStationAlpha.GetSsaStyle(p.Extra, _subtitle.Header);