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
7a2334ce
Commit
7a2334ce
authored
Mar 25, 2022
by
Jean-Baptiste Mardelle
Browse files
Fix foxus issue on effect drop
parent
0274866f
Pipeline
#154698
passed with stage
in 6 minutes and 47 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/Clip.qml
View file @
7a2334ce
...
...
@@ -283,6 +283,7 @@ Rectangle {
dropSource
=
''
dropRow
=
-
1
drag
.
acceptProposedAction
root
.
regainFocus
(
mapToItem
(
root
,
drag
.
x
,
drag
.
y
))
//console.log('KFR VIEW VISIBLE: ', effectRow.visible, ', SOURCE: ', effectRow.source, '\n HIDEVIEW:', clipRoot.hideClipViews<<', UNDEFINED: ', (clipRoot.keyframeModel == undefined))
}
onExited
:
{
...
...
src/timeline2/view/qml/timeline.qml
View file @
7a2334ce
...
...
@@ -626,7 +626,7 @@ Rectangle {
}
}
clearDropData
()
regainFocus
(
Qt
.
point
(
drag
.
x
+
trackHeaders
.
width
,
drag
.
y
+
ruler
.
height
))
regainFocus
(
mapToItem
(
root
,
drag
.
x
,
drag
.
y
))
}
}
DropArea
{
...
...
@@ -791,7 +791,7 @@ Rectangle {
}
onDropped
:
{
processDrop
()
regainFocus
(
Qt
.
point
(
drag
.
x
+
trackHeaders
.
width
,
drag
.
y
+
ruler
.
height
))
regainFocus
(
mapToItem
(
root
,
drag
.
x
,
drag
.
y
))
}
}
DropArea
{
//Drop area for urls (direct drop from file manager)
...
...
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