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
ac064e80
Commit
ac064e80
authored
Apr 09, 2020
by
Jean-Baptiste Mardelle
Browse files
Fix rubberband selection sometimes corrupting vertical scroll
parent
f0164c54
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/timeline.qml
View file @
ac064e80
...
...
@@ -1426,7 +1426,7 @@ Rectangle {
}
else
{
var
maxScroll
=
trackHeaders
.
height
-
tracksArea
.
height
+
scrollView
.
ScrollBar
.
horizontal
.
height
+
ruler
.
height
if
(
scrollView
.
contentY
>
maxScroll
)
{
scrollView
.
contentY
=
maxScroll
scrollView
.
contentY
=
Math
.
max
(
0
,
maxScroll
)
vertical
=
0
stop
()
}
...
...
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