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
3239b0bf
Commit
3239b0bf
authored
Aug 30, 2022
by
Jean-Baptiste Mardelle
Browse files
Fix last commit breaking paste and tests
parent
174b4d3f
Pipeline
#225052
passed with stage
in 12 minutes and 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/timelinefunctions.cpp
View file @
3239b0bf
...
...
@@ -1622,9 +1622,9 @@ bool TimelineFunctions::pasteClips(const std::shared_ptr<TimelineItemModel> &tim
timeline
->
requestClearSelection
();
if
(
!
semaphore
.
tryAcquire
(
1
))
{
pCore
->
displayMessage
(
i18n
(
"Another paste operation is in progress"
),
ErrorMessage
,
500
);
}
while
(
!
semaphore
.
tryAcquire
(
1
))
{
qApp
->
processEvents
();
while
(
!
semaphore
.
tryAcquire
(
1
))
{
qApp
->
processEvents
();
}
}
waitingBinIds
.
clear
();
QDomDocument
copiedItems
;
...
...
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