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
c43b03db
Commit
c43b03db
authored
Apr 08, 2019
by
Jean-Baptiste Mardelle
Browse files
Don't allow resize on very small zoom levels (prevents moving clips)
parent
595b75af
Pipeline
#2313
passed with stage
in 14 minutes and 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/Clip.qml
View file @
c43b03db
...
...
@@ -749,7 +749,7 @@ Rectangle {
opacity
:
0
Drag.active
:
trimInMouseArea
.
drag
.
active
Drag.proposedAction
:
Qt
.
MoveAction
visible
:
root
.
activeTool
===
0
&&
!
mouseArea
.
drag
.
active
visible
:
root
.
activeTool
===
0
&&
!
mouseArea
.
drag
.
active
&&
clipRoot
.
width
>
5
*
width
MouseArea
{
id
:
trimInMouseArea
...
...
@@ -811,7 +811,7 @@ Rectangle {
enabled
:
!
isLocked
Drag.active
:
trimOutMouseArea
.
drag
.
active
Drag.proposedAction
:
Qt
.
MoveAction
visible
:
root
.
activeTool
===
0
&&
!
mouseArea
.
drag
.
active
visible
:
root
.
activeTool
===
0
&&
!
mouseArea
.
drag
.
active
&&
clipRoot
.
width
>
5
*
width
MouseArea
{
id
:
trimOutMouseArea
...
...
Write
Preview
Markdown
is supported
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