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
353fc81d
Commit
353fc81d
authored
Mar 31, 2020
by
Jean-Baptiste Mardelle
Browse files
Show clip duration on hover
Fixes
#121
!41
parent
5de26b4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/Clip.qml
View file @
353fc81d
...
...
@@ -121,7 +121,11 @@ Rectangle {
contentItem
:
Label
{
color
:
activePalette
.
text
font
:
miniFont
text
:
label
.
text
+
'
(
'
+
timeline
.
simplifiedTC
(
clipRoot
.
inPoint
)
+
'
-
'
+
timeline
.
simplifiedTC
(
clipRoot
.
outPoint
)
+
'
)
'
text
:
'
%1 (%2-%3)
\n
%4: %5
'
.
arg
(
label
.
text
)
.
arg
(
timeline
.
simplifiedTC
(
clipRoot
.
inPoint
))
.
arg
(
timeline
.
simplifiedTC
(
clipRoot
.
outPoint
))
.
arg
(
i18n
(
"
Duration
"
))
.
arg
(
timeline
.
simplifiedTC
(
clipRoot
.
clipDuration
))
}
}
...
...
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