mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-26 05:02:36 +01:00
Minor fix for import text (if user don't allow two lines)
This commit is contained in:
parent
837f91a666
commit
f33b2c02ca
@ -222,7 +222,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
{
|
||||
Paragraph next = _subtitle.GetParagraphOrDefault(i + 1);
|
||||
|
||||
bool merge = !(p.Text.Contains(Environment.NewLine) || next == null);
|
||||
bool merge = !(p.Text.Contains(Environment.NewLine) || next == null) && Configuration.Settings.Tools.ListViewSyntaxMoreThanXLinesX > 1;
|
||||
|
||||
if (merge && (p.Text.TrimEnd().EndsWith('!') || p.Text.TrimEnd().EndsWith('.')))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user