From 3bd93996c095614251fdbf1ac71f4ccfec01dc3c Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Wed, 16 Aug 2023 23:44:22 +0200 Subject: [PATCH] Don't inherit color in TimelineContainer --- src/qml/Component/Timeline/TimelineContainer.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qml/Component/Timeline/TimelineContainer.qml b/src/qml/Component/Timeline/TimelineContainer.qml index 5b58b13af..816392981 100644 --- a/src/qml/Component/Timeline/TimelineContainer.qml +++ b/src/qml/Component/Timeline/TimelineContainer.qml @@ -518,7 +518,8 @@ ColumnLayout { visible: cardBackground && !Config.compactLayout anchors.fill: parent Kirigami.Theme.colorSet: Kirigami.Theme.View - color: if (root.author.isLocalUser) { + Kirigami.Theme.inherit: false + color: if (root.author.isLocalUser) { return Kirigami.ColorUtils.tintWithAlpha(Kirigami.Theme.backgroundColor, Kirigami.Theme.highlightColor, 0.15) } else if (root.showHighlight) { return Kirigami.Theme.positiveBackgroundColor