diff --git a/src/Forms/Main.cs b/src/Forms/Main.cs index 318eabb92..980c8bcda 100644 --- a/src/Forms/Main.cs +++ b/src/Forms/Main.cs @@ -7238,6 +7238,7 @@ namespace Nikse.SubtitleEdit.Forms var currentParagraph = _subtitle.GetParagraphOrDefault(firstSelectedIndex); var newParagraph = new Paragraph(currentParagraph); + newParagraph.NewSection = false; currentParagraph.Text = currentParagraph.Text.Replace("< /i>", ""); currentParagraph.Text = currentParagraph.Text.Replace("< i>", ""); @@ -7476,6 +7477,7 @@ namespace Nikse.SubtitleEdit.Forms originalCurrent.EndTime.TotalMilliseconds = currentParagraph.EndTime.TotalMilliseconds; var originalNew = new Paragraph(newParagraph); + originalNew.NewSection = false; lines = originalCurrent.Text.SplitToLines();