From b4090d9671b9de1f815d87f0ae4d8f91edde41b4 Mon Sep 17 00:00:00 2001 From: James Graham Date: Sun, 9 Apr 2023 12:13:46 +0000 Subject: [PATCH] Fix Chat bubble background changing color when created Only enable the animating of the bubble background when the temporary highlight is applied to avoid it flashing white on entry. BUG: 468124 --- src/qml/Component/Timeline/TimelineContainer.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qml/Component/Timeline/TimelineContainer.qml b/src/qml/Component/Timeline/TimelineContainer.qml index 300cc8a09..8b8d53709 100644 --- a/src/qml/Component/Timeline/TimelineContainer.qml +++ b/src/qml/Component/Timeline/TimelineContainer.qml @@ -305,6 +305,7 @@ ColumnLayout { border.width: 1 Behavior on color { + enabled: isTemporaryHighlighted ColorAnimation {target: bubbleBackground; duration: Kirigami.Units.veryLongDuration; easing.type: Easing.InOutCubic} } }