Improve error message when dropping mp4 file without subs in main list view

This commit is contained in:
Nikolaj Olsson 2020-05-15 13:19:04 +02:00
parent 8b963504d9
commit cdb310672e

View File

@ -12912,6 +12912,9 @@ namespace Nikse.SubtitleEdit.Forms
ImportSubtitleFromMp4(fileName);
return;
}
MessageBox.Show(_language.NoSubtitlesFound);
return;
}
else if (ext == ".vob" || ext == ".ifo")
{