mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Export now uses font from ssa/ass - thx mariner :)
This commit is contained in:
parent
0f28edfa80
commit
c49d0e4221
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user