Skip to content
GitLab
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
a4e508da
Commit
a4e508da
authored
Jan 02, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix transparent rendering
parent
efda5358
Pipeline
#12788
passed with stage
in 16 minutes and 5 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/dialogs/renderwidget.cpp
View file @
a4e508da
...
...
@@ -1479,7 +1479,7 @@ void RenderWidget::generateRenderFiles(QDomDocument doc, const QString &playlist
if
(
prod
.
attribute
(
QStringLiteral
(
"id"
))
==
QStringLiteral
(
"black_track"
))
{
auto
props
=
prod
.
elementsByTagName
(
QStringLiteral
(
"property"
));
for
(
int
j
=
0
;
j
<
props
.
count
();
++
j
)
{
auto
prop
=
props
.
at
(
i
).
toElement
();
auto
prop
=
props
.
at
(
j
).
toElement
();
if
(
prop
.
attribute
(
QStringLiteral
(
"name"
))
==
QStringLiteral
(
"resource"
))
{
prop
.
firstChild
().
setNodeValue
(
QStringLiteral
(
"transparent"
));
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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