mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Skip empty models
This commit is contained in:
parent
ce6793aa08
commit
be1e0bbbd0
@ -138,6 +138,12 @@ namespace Nikse.SubtitleEdit.Forms.AudioToText
|
||||
continue;
|
||||
}
|
||||
|
||||
var fileInfo = new FileInfo(fileName);
|
||||
if (fileInfo.Length < 10_000_000)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
comboBoxModels.Items.Add(model);
|
||||
if (model.Name == selectName)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user