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
cce6cb4b
Commit
cce6cb4b
authored
Dec 13, 2019
by
Jean-Baptiste Mardelle
Browse files
Fix loop zone broken regression
Fixes
#483
parent
c28eb54c
Changes
1
Show whitespace changes
Inline
Side-by-side
src/monitor/glwidget.cpp
View file @
cce6cb4b
...
...
@@ -686,7 +686,7 @@ bool GLWidget::checkFrameNumber(int pos, int offset, bool isPlaying)
m_proxy
->
positionFromConsumer
(
pos
,
isPlaying
);
int
maxPos
=
m_producer
->
get_int
(
"out"
);
if
(
m_isLoopMode
||
m_isZoneMode
)
{
if
(
!
isPlaying
&&
pos
>=
maxPos
)
{
if
(
isPlaying
&&
pos
>=
maxPos
)
{
m_consumer
->
purge
();
if
(
!
m_isLoopMode
)
{
return
false
;
...
...
Write
Preview
Supports
Markdown
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