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
6a4be058
Commit
6a4be058
authored
Jan 22, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix changing speed breaks timeline focus.
Fixes
#803
parent
cb7ee643
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/Clip.qml
View file @
6a4be058
...
...
@@ -549,7 +549,11 @@ Rectangle {
if
(
sizeChanged
)
{
clipRoot
.
trimmedIn
(
clipRoot
,
shiftTrim
,
controlTrim
)
sizeChanged
=
false
updateDrag
()
if
(
!
controlTrim
)
{
updateDrag
()
}
else
{
endDrag
()
}
}
}
onDoubleClicked
:
{
...
...
@@ -658,7 +662,11 @@ Rectangle {
if
(
sizeChanged
)
{
clipRoot
.
trimmedOut
(
clipRoot
,
shiftTrim
,
controlTrim
)
sizeChanged
=
false
updateDrag
()
if
(
!
controlTrim
)
{
updateDrag
()
}
else
{
endDrag
()
}
}
}
onDoubleClicked
:
{
...
...
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