Export now uses font from ssa/ass - thx mariner :)

This commit is contained in:
niksedk 2014-08-03 21:19:33 +02:00
parent 0f28edfa80
commit c49d0e4221
2 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,7 @@
* Allow adding words to user dictionary with a length of 1 - thx Betsy25
* FIXED:
* Fixed crash in Visual Sync when using VLC as video player
* Export to image based formats now uses font from ssa/ass - thx mariner
* Do not lock explorer when dropping files (for OCR) in SE main list view - thx Jar
* Fixed dialogue issue in "auto-break lines" - thx fred
* Framerate conversion - fix for time based subs

View File

@ -283,6 +283,7 @@ namespace Nikse.SubtitleEdit.Forms
parameter.SubtitleColor = style.Primary;
parameter.SubtitleFontBold = style.Bold;
parameter.SubtitleFontSize = style.FontSize;
parameter.SubtitleFontName = style.FontName;
if (style.BorderStyle == "3")
{
parameter.BackgroundColor = style.Background;
@ -294,6 +295,7 @@ namespace Nikse.SubtitleEdit.Forms
parameter.SubtitleColor = style.Primary;
parameter.SubtitleFontBold = style.Bold;
parameter.SubtitleFontSize = style.FontSize;
parameter.SubtitleFontName = style.FontName;
if (style.BorderStyle == "3")
{
parameter.BackgroundColor = style.Outline;