Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
Kdenlive
Commits
a568c015
Commit
a568c015
authored
Dec 01, 2017
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't restart clip if trying to play backwards from clip monitor end
parent
5950ef65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/renderer.cpp
src/renderer.cpp
+1
-1
No files found.
src/renderer.cpp
View file @
a568c015
...
...
@@ -750,7 +750,7 @@ void Render::switchPlay(bool play, double speed)
}
if
(
play
)
{
double
currentSpeed
=
m_mltProducer
->
get_speed
();
if
(
m_name
==
Kdenlive
::
ClipMonitor
&&
m_mltConsumer
->
position
()
==
m_mltProducer
->
get_out
())
{
if
(
m_name
==
Kdenlive
::
ClipMonitor
&&
m_mltConsumer
->
position
()
==
m_mltProducer
->
get_out
()
&&
speed
>
0
)
{
m_mltProducer
->
seek
(
0
);
}
if
(
m_mltConsumer
->
get_int
(
"real_time"
)
!=
m_qmlView
->
realTime
())
{
...
...
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