Fix bug in FCE Remove empty lines - thx marb99 :)

Fix #3293
This commit is contained in:
Nikolaj Olsson 2019-01-15 21:18:52 +01:00
parent cf02ca9c1b
commit 18cc31975a

View File

@ -101,7 +101,7 @@ namespace Nikse.SubtitleEdit.Core.Forms.FixCommonErrors
}
if (Configuration.Settings.Tools.RemoveEmptyLinesBetweenText &&
callbacks.AllowFix(p, fixAction2) && text.Contains(Environment.NewLine + Environment.NewLine))
callbacks.AllowFix(p, fixAction3) && text.Contains(Environment.NewLine + Environment.NewLine))
{
int beforeLength = text.Length;
while (text.Contains(Environment.NewLine + Environment.NewLine))