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
f5ebdb54
Commit
f5ebdb54
authored
Apr 30, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix proxied clip cannot be dragged from monitor to timeline.
Fixes
#1052
parent
a42613bd
Pipeline
#60269
passed with stage
in 8 minutes and 52 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/mltcontroller/clipcontroller.cpp
View file @
f5ebdb54
...
...
@@ -437,9 +437,9 @@ int ClipController::getFramePlaytime() const
}
if
(
!
m_hasLimitedDuration
)
{
int
playtime
=
m_masterProducer
->
time_to_frames
(
m_masterProducer
->
get
(
"kdenlive:duration"
));
return
playtime
==
0
?
m_masterProducer
->
get_
playtime
()
:
playtime
;
return
playtime
==
0
?
m_masterProducer
->
get_
length
()
:
playtime
;
}
return
m_masterProducer
->
get_
playtime
();
return
m_masterProducer
->
get_
length
();
}
QString
ClipController
::
getProducerProperty
(
const
QString
&
name
)
const
...
...
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