Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Farid Abdelnour
kdenlive
Commits
ecb88802
Commit
ecb88802
authored
Oct 30, 2011
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix broken clip when opening a project in which a proxy clip was missing
svn path=/trunk/kdenlive/; revision=6004
parent
0bd6bcac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/projectlist.cpp
src/projectlist.cpp
+2
-2
No files found.
src/projectlist.cpp
View file @
ecb88802
...
...
@@ -1267,7 +1267,7 @@ void ProjectList::updateAllClips(bool displayRatioChanged, bool fpsChanged)
item
=
static_cast
<
ProjectItem
*>
(
*
it
);
clip
=
item
->
referencedClip
();
if
(
item
->
referencedClip
()
->
getProducer
()
==
NULL
)
{
if
(
clip
->
isPlaceHolder
()
==
false
)
{
if
(
clip
->
isPlaceHolder
()
==
false
&&
!
item
->
isProxyRunning
()
)
{
QDomElement
xml
=
clip
->
toXML
();
if
(
fpsChanged
)
{
xml
.
removeAttribute
(
"out"
);
...
...
@@ -1837,7 +1837,7 @@ void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Produce
int
max
=
m_doc
->
clipManager
()
->
clipsCount
();
emit
displayMessage
(
i18n
(
"Loading clips"
),
(
int
)(
100
*
(
max
-
queue
)
/
max
));
}
if
(
m_allClipsProcessed
)
processNextThumbnail
();
if
(
m_allClipsProcessed
)
emit
processNextThumbnail
();
}
if
(
replace
&&
item
)
{
toReload
=
clipId
;
...
...
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