mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Fixed refact bug
This commit is contained in:
parent
94ad01c73e
commit
c6a4d4bc7f
@ -1650,7 +1650,7 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats
|
||||
var cp = GetColorAndPosition(part);
|
||||
if (cp != null)
|
||||
{
|
||||
if (cp.Y > 0 && y >= 0 && cp.Y > y && !sb.ToString().EndsWith(Environment.NewLine) && string.IsNullOrWhiteSpace(sb.ToString()))
|
||||
if (cp.Y > 0 && y >= 0 && cp.Y > y && !sb.ToString().EndsWith(Environment.NewLine) && !string.IsNullOrWhiteSpace(sb.ToString()))
|
||||
sb.AppendLine();
|
||||
if (cp.Y > 0)
|
||||
y = cp.Y;
|
||||
|
Loading…
Reference in New Issue
Block a user