mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Also check if out cues are chainable
This commit is contained in:
parent
7e6d3c2424
commit
3a6025e4da
@ -81,8 +81,18 @@ namespace Nikse.SubtitleEdit.Core.Forms
|
||||
}
|
||||
else
|
||||
{
|
||||
// If not, then we have a free out cue
|
||||
FixOutCue(p);
|
||||
// If not, check if we have chainable subtitles
|
||||
result = FixChainableSubtitles(paragraph, nextParagraph);
|
||||
if (result)
|
||||
{
|
||||
// Yes, this means the next subtitle's in cue is now also processed. Skipping in next iteration
|
||||
skipNextInCue = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
// If not, then we have a free out cue
|
||||
FixOutCue(p);
|
||||
}
|
||||
}
|
||||
|
||||
// Report progress
|
||||
|
Loading…
Reference in New Issue
Block a user