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
e4f09f85
Commit
e4f09f85
authored
Nov 15, 2016
by
Jean-Baptiste Mardelle
Browse files
Fix ungrouped clips not saved
CCBUG: 372020
parent
00ff22d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/project/projectmanager.cpp
View file @
e4f09f85
...
...
@@ -712,11 +712,8 @@ QString ProjectManager::projectSceneList(const QString outputFolder)
void
ProjectManager
::
prepareSave
()
{
pCore
->
binController
()
->
saveDocumentProperties
(
m_trackView
->
documentProperties
(),
m_project
->
metadata
(),
m_trackView
->
projectView
()
->
guidesData
());
QString
projectNotes
=
m_project
->
documentNotes
();
pCore
->
binController
()
->
saveProperty
(
QStringLiteral
(
"kdenlive:documentnotes"
),
projectNotes
);
QString
groupsXml
=
m_project
->
groupsXml
();
if
(
!
groupsXml
.
isEmpty
())
pCore
->
binController
()
->
saveProperty
(
QStringLiteral
(
"kdenlive:clipgroups"
),
groupsXml
);
pCore
->
binController
()
->
saveProperty
(
QStringLiteral
(
"kdenlive:documentnotes"
),
m_project
->
documentNotes
());
pCore
->
binController
()
->
saveProperty
(
QStringLiteral
(
"kdenlive:clipgroups"
),
m_project
->
groupsXml
());
}
...
...
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