From 367afb70a2159584a261ccc12cb92e6e16fa1bb1 Mon Sep 17 00:00:00 2001 From: ace-smart Date: Thu, 25 Feb 2021 19:40:45 +0400 Subject: [PATCH] Fixed wrong invite description text color in dark mode. Fixes #1912 --- ui/app/AppLayouts/Chat/ChatColumn/EmptyChat.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Chat/ChatColumn/EmptyChat.qml b/ui/app/AppLayouts/Chat/ChatColumn/EmptyChat.qml index 3bde3665e4..02c2d22498 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/EmptyChat.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/EmptyChat.qml @@ -52,7 +52,7 @@ Item { //% "or" text: qsTrId("or") font.pixelSize: 15 - color: Style.current.darkGrey + color: Style.current.secondaryText anchors.left: shareKeyLink.right anchors.leftMargin: 2 anchors.bottom: shareKeyLink.bottom @@ -89,7 +89,7 @@ Item { //% "friends to start messaging in Status" text: qsTrId("friends-to-start-messaging-in-status") font.pixelSize: 15 - color: Style.current.darkGrey + color: Style.current.secondaryText anchors.horizontalCenter: walkieTalkieImage.horizontalCenter anchors.top: links.bottom }