Allower for larger files via drop to list view - thx Jim :)

This commit is contained in:
Nikolaj Olsson 2024-07-20 12:55:35 +02:00
parent 6213ebfcf0
commit 884cda5297
2 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,8 @@
* Update Polish translation - thx admas
* Update French translation - thx Pierre
* Update Greek translation - thx PMitsakis
* Allower for larger files via drop to list view - thx Jim
* FIXED:
* Fix crash in TTML IMSC 1.1 - thx Louie
* Fix Romanian translation version number - thx MediaExpres

View File

@ -16334,6 +16334,10 @@ namespace Nikse.SubtitleEdit.Forms
{
OpenSubtitle(fileName, null);
}
else if (SubtitleFormat.AllSubtitleFormats.Any(p=>p.Extension == ext))
{
OpenSubtitle(fileName, null);
}
else
{
MessageBox.Show(string.Format(_language.DropSubtitleFileXNotAccepted, fileName));