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
ab106fda
Commit
ab106fda
authored
May 23, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix timeline thumbnails not saved with project
parent
75feb1d7
Pipeline
#62895
passed with stage
in 8 minutes and 17 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/timelinecontroller.cpp
View file @
ab106fda
...
...
@@ -3587,8 +3587,8 @@ QStringList TimelineController::getThumbKeys()
for
(
const
auto
&
clp
:
m_model
->
m_allClips
)
{
const
QString
binId
=
getClipBinId
(
clp
.
first
);
std
::
shared_ptr
<
ProjectClip
>
binClip
=
pCore
->
bin
()
->
getBinClip
(
binId
);
result
<<
binClip
->
hash
()
+
QLatin1Char
(
'#'
)
+
QString
::
number
(
clp
.
second
->
getIn
())
+
QStringLiteral
(
".p
n
g"
);
result
<<
binClip
->
hash
()
+
QLatin1Char
(
'#'
)
+
QString
::
number
(
clp
.
second
->
getOut
())
+
QStringLiteral
(
".p
n
g"
);
result
<<
binClip
->
hash
()
+
QLatin1Char
(
'#'
)
+
QString
::
number
(
clp
.
second
->
getIn
())
+
QStringLiteral
(
".
j
pg"
);
result
<<
binClip
->
hash
()
+
QLatin1Char
(
'#'
)
+
QString
::
number
(
clp
.
second
->
getOut
())
+
QStringLiteral
(
".
j
pg"
);
}
result
.
removeDuplicates
();
return
result
;
...
...
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