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
4642f7ea
Commit
4642f7ea
authored
Nov 05, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix monitor play zone
Fixes
#1242
parent
ecc524fd
Pipeline
#94282
passed with stage
in 8 minutes and 37 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/monitor/glwidget.cpp
View file @
4642f7ea
...
...
@@ -697,6 +697,12 @@ bool GLWidget::checkFrameNumber(int pos, int offset, bool isPlaying)
if
(
isPlaying
&&
pos
>=
m_loopOut
)
{
m_consumer
->
purge
();
if
(
!
m_isLoopMode
)
{
m_producer
->
set_speed
(
0
);
m_proxy
->
setSpeed
(
0
);
m_consumer
->
set
(
"refresh"
,
0
);
m_proxy
->
setPosition
(
m_loopOut
);
m_producer
->
seek
(
m_loopOut
);
m_loopOut
=
0
;
return
false
;
}
m_producer
->
seek
(
m_isZoneMode
?
m_proxy
->
zoneIn
()
:
m_loopIn
);
...
...
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