mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
commit
dba2e0a3a4
@ -43,7 +43,7 @@
|
||||
* Fixed reading of split Blu-ray sup packages from mkv - thx Sinnlosvoll
|
||||
* Minor improvement for line split in "Binary image compare" OCR
|
||||
* Fixed Blu-ray composition number when writing .sup files - thx mbcd
|
||||
* Fixed some minor issues in "Compare" - thx invandrofly
|
||||
* Fixed some minor issues in "Compare" - thx ivandrofly
|
||||
* Fixed Tesseract dictionaries download links
|
||||
* Fixed crash in import of .TS files - thx malgane/ivandrofly
|
||||
* + Many minor fixes from ivandrofly and xylographe
|
||||
|
@ -221,7 +221,7 @@ namespace Nikse.SubtitleEdit.Core
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates subtitle as text in it'snative format
|
||||
/// Creates subtitle as text in its native format.
|
||||
/// </summary>
|
||||
/// <param name="format">Format to output</param>
|
||||
/// <returns>Native format as text string</returns>
|
||||
|
@ -586,7 +586,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
|
||||
else if (header.DisplayStandardCode == "0" && header.MaximumNumberOfDisplayableRows == "02") // open subtitling
|
||||
rows = 15;
|
||||
|
||||
var text = p.Text.Trim(new char[] { '\r', '\n' });
|
||||
var text = p.Text.Trim(Utilities.NewLineChars);
|
||||
if (text.StartsWith("{\\an7}", StringComparison.Ordinal) || text.StartsWith("{\\an8}", StringComparison.Ordinal) || text.StartsWith("{\\an9}", StringComparison.Ordinal))
|
||||
{
|
||||
tti.VerticalPosition = 1; // top (vertical)
|
||||
|
Loading…
Reference in New Issue
Block a user