Drag'n'drop of subtitles now allows up to 10 MB for text based subtitles just like normal open - thx Silvena :)

This commit is contained in:
Nikolaj Olsson 2017-05-09 20:56:17 +02:00
parent 12be255be9
commit 5a31b5fb1d

View File

@ -10830,7 +10830,7 @@ namespace Nikse.SubtitleEdit.Forms
}
}
if (file.Length < 1024 * 1024 * 2) // max 2 mb
if (file.Length < 1024 * 1024 * 10) // max 10 mb
{
OpenSubtitle(fileName, null);
}