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
eeff3a82
Commit
eeff3a82
authored
Apr 01, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix default clip zone 1 frame too short
parent
eaa882f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mltcontroller/clipcontroller.cpp
View file @
eeff3a82
...
...
@@ -739,7 +739,7 @@ void ClipController::setZone(const QPoint &zone)
QPoint
ClipController
::
zone
()
const
{
int
in
=
getProducerIntProperty
(
QStringLiteral
(
"kdenlive:zone_in"
));
int
max
=
getFramePlaytime
()
-
1
;
int
max
=
getFramePlaytime
();
int
out
=
qMin
(
getProducerIntProperty
(
QStringLiteral
(
"kdenlive:zone_out"
)),
max
);
if
(
out
<=
in
)
{
out
=
max
;
...
...
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