mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Minor fix for last PR
This commit is contained in:
parent
d88579e324
commit
b4247b7eb4
@ -82,7 +82,7 @@ namespace Nikse.SubtitleEdit.Core
|
||||
if (list[i].X > width)
|
||||
width = list[i].X;
|
||||
}
|
||||
int max = System.Math.Max(52, list.Length);
|
||||
int max = System.Math.Min(52, list.Length);
|
||||
for (int i = 0; i < max; i += 2)
|
||||
{
|
||||
if (list[i].X > width)
|
||||
|
Loading…
Reference in New Issue
Block a user