Skip to content

Commit

Permalink
fixed script creator AddLogo's empty filename
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Feb 16, 2019
1 parent 02243a2 commit a980b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/script_creator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ inline QString ScriptCreator::createScript(const ScriptCreateFilter &a_filter)
{
an = QString::number(ui->spinBoxAddLogoAlignment->value());
}
script = QString("src = qvs.AddLogo(src, path=u'%1', w=%2, h=%3, an=%4, x=0, y=0, opacity=1, aa=False, fadein=0, fadeout=0)").arg(m_deleteLogoFilename).arg(w).arg(h).arg(an);
script = QString("src = qvs.AddLogo(src, path=u'%1', w=%2, h=%3, an=%4, x=0, y=0, opacity=1, aa=False, fadein=0, fadeout=0)").arg(m_addLogoFilename).arg(w).arg(h).arg(an);
}
break;
case ScriptCreateDenoise:
Expand Down

0 comments on commit a980b02

Please sign in to comment.