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
78f53637
Commit
78f53637
authored
Jun 12, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix crash in project settings caused by recent update to cache data management
parent
d206db0e
Pipeline
#23380
passed with stage
in 12 minutes and 37 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/project/dialogs/temporarydata.cpp
View file @
78f53637
...
...
@@ -217,12 +217,11 @@ TemporaryData::TemporaryData(KdenliveDoc *doc, bool currentProjectOnly, QWidget
lay
->
addWidget
(
tab
);
}
setLayout
(
lay
);
if
(
globalOnly
)
{
if
(
globalOnly
&&
!
currentProjectOnly
)
{
updateGlobalInfo
();
}
else
{
updateDataInfo
();
}
processProxyDirectory
();
}
void
TemporaryData
::
updateDataInfo
()
...
...
@@ -752,6 +751,7 @@ void TemporaryData::updateGlobalInfo()
m_globalDirectories
.
removeAll
(
QStringLiteral
(
"attica"
));
m_globalDirectories
.
removeAll
(
QStringLiteral
(
"proxy"
));
m_globalDelete
->
setEnabled
(
!
m_globalDirectories
.
isEmpty
());
processProxyDirectory
();
processglobalDirectories
();
m_listWidget
->
blockSignals
(
false
);
}
...
...
Write
Preview
Markdown
is supported
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