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
ea07c608
Commit
ea07c608
authored
Aug 28, 2022
by
Jean-Baptiste Mardelle
Browse files
Fix clip start tooltip when there already is a mix
parent
48a72bc3
Pipeline
#224308
passed with stage
in 17 minutes and 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/Clip.qml
View file @
ea07c608
...
...
@@ -702,7 +702,11 @@ Rectangle {
initDrag
(
clipRoot
,
itemPos
,
clipRoot
.
clipId
,
clipRoot
.
modelStart
,
clipRoot
.
trackId
,
false
)
var
s
=
i18n
(
"
In:%1, Position:%2
"
,
timeline
.
simplifiedTC
(
clipRoot
.
inPoint
),
timeline
.
simplifiedTC
(
clipRoot
.
modelStart
))
timeline
.
showToolTip
(
s
)
timeline
.
showKeyBinding
(
i18n
(
"
<b>Ctrl drag</b> to change speed, <b>Double click</b> to mix with adjacent clip
"
))
if
(
clipRoot
.
mixDuration
==
0
)
{
timeline
.
showKeyBinding
(
i18n
(
"
<b>Ctrl drag</b> to change speed, <b>Double click</b> to mix with adjacent clip
"
))
}
else
{
timeline
.
showKeyBinding
(
i18n
(
"
<b>Drag</b> to change mix duration
"
))
}
}
}
onExited
:
{
...
...
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