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
d04c4cd9
Commit
d04c4cd9
authored
Jun 06, 2020
by
Jean-Baptiste Mardelle
Browse files
Windows specific shortut to change a grouped clip's track (Alt+mouse)
Related to
#337
parent
4bf92f8d
Pipeline
#22775
passed with stage
in 9 minutes and 19 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/timeline.qml
View file @
d04c4cd9
...
...
@@ -1106,7 +1106,7 @@ Rectangle {
return
}
dragFrame
=
-
1
moveMirrorTracks
=
!
(
mouse
.
modifiers
&
Qt
.
MetaModifier
)
&&
!
(
mouse
.
modifiers
==
(
Qt
.
ShiftModifier
|
Qt
.
AltModifier
))
moveMirrorTracks
=
!
(
mouse
.
modifiers
&
Qt
.
MetaModifier
)
&&
(
Qt
.
platform
.
os
!=
"
windows
"
||
!
(
mouse
.
modifiers
&
Qt
.
AltModifier
))
timeline
.
activeTrack
=
dragProxy
.
sourceTrack
if
(
timeline
.
selection
.
indexOf
(
dragProxy
.
draggedItem
)
==
-
1
)
{
controller
.
requestAddToSelection
(
dragProxy
.
draggedItem
,
/*clear=*/
true
)
...
...
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