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
5e5d8ffa
Commit
5e5d8ffa
authored
Apr 02, 2021
by
Julius Künzel
Browse files
Archive Project: fix subtile files are not added to archive
BUG: 434401
Related to
#973
parent
89a31330
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/project/dialogs/archivewidget.cpp
View file @
5e5d8ffa
...
...
@@ -997,6 +997,13 @@ void ArchiveWidget::createArchive()
delete
m_temp
;
m_temp
=
nullptr
;
}
if
(
success
)
{
// Add subtitle files if any
QString
sub
=
pCore
->
currentDoc
()
->
subTitlePath
(
false
);
if
(
QFileInfo
::
exists
(
sub
))
{
success
=
archive
->
addLocalFile
(
sub
,
m_name
+
QStringLiteral
(
".kdenlive."
)
+
QFileInfo
(
sub
).
completeSuffix
());
}
}
if
(
success
)
{
success
=
archive
->
close
();
}
else
{
...
...
Eugen Mohr
@emohr
mentioned in issue
#973
·
Apr 25, 2021
mentioned in issue
#973
mentioned in issue #973
Toggle commit list
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