Small fix.
This commit is contained in:
parent
8dd7c3d0ed
commit
572a8df9a4
@ -142,7 +142,7 @@ public:
|
||||
virtual QStringList supportedOutputFormats(void) const
|
||||
{
|
||||
QStringList extLst;
|
||||
extLst << "mp4";
|
||||
extLst << "mp4" << "264" << "hevc";
|
||||
return extLst;
|
||||
}
|
||||
|
||||
|
@ -275,7 +275,7 @@ QModelIndex JobListModel::insertJob(EncodeThread *thread)
|
||||
}
|
||||
if(!unique)
|
||||
{
|
||||
jobName = QString("%1 %2 (%3)").arg(QFileInfo(thread->sourceFileName()).completeBaseName().simplified(), QString::number(n++), config);
|
||||
jobName = QString("%1 %2 [%3]").arg(QFileInfo(thread->sourceFileName()).completeBaseName().simplified(), QString::number(n++), config);
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user