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
2d4f686e
Commit
2d4f686e
authored
Apr 26, 2020
by
Jean-Baptiste Mardelle
Browse files
Show clip speed before name so it's visible when changing speed of a clip with long name
parent
035c90a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/Clip.qml
View file @
2d4f686e
...
...
@@ -577,7 +577,7 @@ Rectangle {
Text
{
// Clip name text
id
:
label
text
:
clipName
+
(
clipRoot
.
speed
!=
1.0
?
'
[
'
+
Math
.
round
(
clipRoot
.
speed
*
100
)
+
'
%]
'
:
''
)
text
:
(
clipRoot
.
speed
!=
1.0
?
'
[
'
+
Math
.
round
(
clipRoot
.
speed
*
100
)
+
'
%]
'
:
''
)
+
clipName
font
:
miniFont
anchors
{
top
:
labelRect
.
top
...
...
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