diff --git a/Changelog.txt b/Changelog.txt index f4bba0a5f..43494e754 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -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 diff --git a/src/ui/Forms/Main.cs b/src/ui/Forms/Main.cs index 144b50e08..b694fa865 100644 --- a/src/ui/Forms/Main.cs +++ b/src/ui/Forms/Main.cs @@ -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));