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
86b662f7
Commit
86b662f7
authored
Nov 17, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix some 1 frame clip mix incorrectly detected as invalid
parent
2cf317db
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/timelinemodel.cpp
View file @
86b662f7
...
...
@@ -2962,7 +2962,7 @@ int TimelineModel::requestItemResizeInfo(int itemId, int in, int out, int size,
bool
TimelineModel
::
trackIsBlankAt
(
int
tid
,
int
pos
,
int
playlist
)
const
{
if
(
pos
>
=
getTrackById_const
(
tid
)
->
trackDuration
()
-
1
)
{
if
(
pos
>
getTrackById_const
(
tid
)
->
trackDuration
()
-
1
)
{
return
true
;
}
return
getTrackById_const
(
tid
)
->
isBlankAt
(
pos
,
playlist
);
...
...
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