mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-24 04:02:36 +01:00
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:
parent
12be255be9
commit
5a31b5fb1d
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user