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
3fea8e3d
Commit
3fea8e3d
authored
Jan 16, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix typo breaking timeline seeking
parent
3dc9f651
Pipeline
#13312
passed with stage
in 18 minutes and 29 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/timeline.qml
View file @
3fea8e3d
...
...
@@ -1008,7 +1008,7 @@ Rectangle {
rubberSelect
.
y
=
rubberSelect
.
originY
rubberSelect
.
height
=
newY
-
rubberSelect
.
originY
}
}
else
if
(
mouse
.
buttons
===
Qt
.
LeftButton
&&
(
!
mouse
.
modifiers
&
Qt
.
ShiftModifier
))
{
}
else
if
(
mouse
.
buttons
===
Qt
.
LeftButton
&&
!
(
mouse
.
modifiers
&
Qt
.
ShiftModifier
))
{
if
(
root
.
activeTool
===
0
||
mouse
.
y
<
ruler
.
height
)
{
proxy
.
position
=
Math
.
max
(
0
,
Math
.
min
((
scrollView
.
flickableItem
.
contentX
+
mouse
.
x
)
/
timeline
.
scaleFactor
,
timeline
.
fullDuration
-
1
))
}
else
if
(
root
.
activeTool
===
2
&&
spacerGroup
>
-
1
)
{
...
...
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