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
3eb6d9cd
Commit
3eb6d9cd
authored
Feb 08, 2022
by
Jean-Baptiste Mardelle
Browse files
Fix clip name not scrolling anymore
parent
754f4f21
Pipeline
#134960
passed with stage
in 5 minutes and 26 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/view/qml/Clip.qml
View file @
3eb6d9cd
...
...
@@ -64,7 +64,7 @@ Rectangle {
property
bool
canBeAudio
property
bool
canBeVideo
property
double
speed
:
1.0
property
color
borderColor
:
'
black
'
property
color
borderColor
:
"
#000000
"
property
bool
forceReloadThumb
property
bool
forceReloadAudioThumb
property
bool
isComposition
:
false
...
...
@@ -197,7 +197,7 @@ Rectangle {
function
updateLabelOffset
()
{
labelRect
.
x
=
scrollX
>
modelStart
*
timeScale
?
scrollX
-
modelStart
*
timeScale
:
0
labelRect
.
anchors
.
leftMargin
=
scrollX
>
modelStart
*
timeScale
?
scrollX
-
modelStart
*
timeScale
+
(
clipRoot
.
timeremap
?
labelRect
.
height
:
0
)
:
clipRoot
.
timeremap
?
labelRect
.
height
:
0
}
border.color
:
(
clipStatus
===
ClipStatus
.
StatusMissing
||
ClipStatus
===
ClipStatus
.
StatusWaiting
||
clipStatus
===
ClipStatus
.
StatusDeleting
)
?
"
#ff0000
"
:
selected
?
root
.
selectionColor
:
grouped
?
root
.
groupColor
:
borderColor
...
...
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