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
2df35530
Commit
2df35530
authored
Mar 19, 2020
by
Jean-Baptiste Mardelle
Browse files
Don't seek to 0 if reverse play at end of clip monitor
parent
4055dc74
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/monitor/glwidget.cpp
View file @
2df35530
...
...
@@ -1604,7 +1604,7 @@ void GLWidget::switchPlay(bool play, double speed)
resetZoneMode
();
}
if
(
play
)
{
if
(
m_id
==
Kdenlive
::
ClipMonitor
&&
m_consumer
->
position
()
==
m_producer
->
get_out
())
{
if
(
m_id
==
Kdenlive
::
ClipMonitor
&&
m_consumer
->
position
()
==
m_producer
->
get_out
()
&&
speed
>
0
)
{
m_producer
->
seek
(
0
);
}
m_producer
->
set_speed
(
speed
);
...
...
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