Fix readmarker background colour animation

Update the target for the read marker background colour animation
This commit is contained in:
James Graham
2022-11-24 21:04:48 +00:00
parent 10796b2359
commit eff994a9be

View File

@@ -70,6 +70,7 @@ QQC2.ItemDelegate {
}
background: Kirigami.ShadowedRectangle {
id: readMarkerBackground
color: {
if (readMarkerDelegate.isTemporaryHighlighted) {
return Kirigami.Theme.positiveBackgroundColor
@@ -85,7 +86,7 @@ QQC2.ItemDelegate {
border.width: 1
Behavior on color {
ColorAnimation {target: bubbleBackground; duration: Kirigami.Units.veryLongDuration; easing.type: Easing.InOutCubic}
ColorAnimation {target: readMarkerBackground; duration: Kirigami.Units.veryLongDuration; easing.type: Easing.InOutCubic}
}
}
}