From cc65c694c03bcf74c0906b6fdaefd4b2ea3cdd56 Mon Sep 17 00:00:00 2001 From: Sebastian Wolf Date: Wed, 6 Jan 2021 14:01:55 +0100 Subject: [PATCH] Use highlightBackgroundColor consistently for all chat attributes --- qml/components/PhotoTextsListItem.qml | 4 ++-- qml/pages/ChatPage.qml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/qml/components/PhotoTextsListItem.qml b/qml/components/PhotoTextsListItem.qml index 05cc9cb..68287a6 100644 --- a/qml/components/PhotoTextsListItem.qml +++ b/qml/components/PhotoTextsListItem.qml @@ -52,7 +52,7 @@ ListItem { Rectangle { id: chatPinnedBackground - color: Theme.overlayBackgroundColor + color: Theme.highlightBackgroundColor width: Theme.fontSizeExtraLarge height: Theme.fontSizeExtraLarge anchors.top: parent.top @@ -70,7 +70,7 @@ ListItem { Rectangle { id: chatSecretBackground - color: Theme.overlayBackgroundColor + color: Theme.highlightBackgroundColor width: Theme.fontSizeExtraLarge height: Theme.fontSizeExtraLarge anchors.bottom: parent.bottom diff --git a/qml/pages/ChatPage.qml b/qml/pages/ChatPage.qml index 6999863..01c8e55 100644 --- a/qml/pages/ChatPage.qml +++ b/qml/pages/ChatPage.qml @@ -749,7 +749,7 @@ Page { Rectangle { id: chatSecretBackground - color: Theme.overlayBackgroundColor + color: Theme.highlightBackgroundColor width: chatPage.isPortrait ? Theme.fontSizeLarge : Theme.fontSizeMedium height: width anchors.left: parent.left