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
55003541
Commit
55003541
authored
Apr 13, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix editing effects, resizing clip breaks loop play.
Fixes
#293
parent
98f77f0f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/monitor/glwidget.cpp
View file @
55003541
...
...
@@ -690,7 +690,7 @@ bool GLWidget::checkFrameNumber(int pos, int offset, bool isPlaying)
{
const
double
speed
=
m_producer
->
get_speed
();
m_proxy
->
positionFromConsumer
(
pos
,
isPlaying
);
int
maxPos
=
m_producer
->
get_int
(
"out"
);
int
maxPos
=
(
m_isZoneMode
||
m_isLoopMode
)
?
m_proxy
->
zoneOut
()
:
m_producer
->
get_int
(
"out"
);
if
(
m_isLoopMode
||
m_isZoneMode
)
{
if
(
isPlaying
&&
pos
>=
maxPos
)
{
m_consumer
->
purge
();
...
...
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