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
1374bd44
Commit
1374bd44
authored
Nov 21, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix left resize regression
parent
462b430d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/Clip.qml
View file @
1374bd44
...
...
@@ -586,7 +586,7 @@ Rectangle {
var
currentClipPos
=
clipRoot
.
modelStart
var
delta
=
currentFrame
-
currentClipPos
if
(
delta
!==
0
)
{
if
(
delta
>
0
&&
(
clipRoot
.
mixDuration
-
clipRoot
.
mixCut
-
delta
<
0
))
{
if
(
delta
>
0
&&
clipRoot
.
mixDuration
>
0
&&
(
clipRoot
.
mixDuration
-
clipRoot
.
mixCut
-
delta
<
0
))
{
return
}
var
newDuration
=
0
;
...
...
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