Merge pull request #2195 from ivandrofly/timed_text

[TimedText] - Exit as soon 'all30OrBelow' changes state.
This commit is contained in:
Nikolaj Olsson 2017-01-29 09:07:16 +01:00 committed by GitHub
commit 8fbfec9bf4

View File

@ -302,7 +302,10 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
foreach (Paragraph p in subtitle.Paragraphs)
{
if (p.StartTime.Milliseconds > 30 || p.EndTime.Milliseconds > 30)
{
all30OrBelow = false;
break;
}
}
if (all30OrBelow)
{