Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
cd349721
Commit
cd349721
authored
Oct 22, 2019
by
Jean-Baptiste Mardelle
Browse files
Fix missing param name in avfilters
parent
fd9a00fb
Pipeline
#9692
failed with stage
in 16 minutes and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/assets/abstractassetsrepository.ipp
View file @
cd349721
...
...
@@ -239,6 +239,9 @@ template <typename AssetType> bool AbstractAssetsRepository<AssetType>::parseInf
}
}
QString paramName = paramdesc.get("title");
if (paramName.isEmpty()) {
paramName = paramdesc.get("identifier");
}
if (!paramName.isEmpty()) {
QDomElement pname = doc.createElement(QStringLiteral("name"));
pname.appendChild(doc.createTextNode(paramName));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment