From 0eb2a2360012965f0b89551272d1b91a72e1d848 Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Fri, 9 Jul 2021 10:16:16 +0100 Subject: [PATCH] fix(@desktop/timeline): update color of chat time when image --- .../AppLayouts/Chat/ChatColumn/MessageComponents/ChatTime.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatTime.qml b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatTime.qml index 976a444d8c..36682972b1 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatTime.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatTime.qml @@ -7,7 +7,7 @@ StyledText { property bool formatDateTime: false id: chatTime visible: isMessage - color: isImage ? Style.current.white : Style.current.secondaryText + color: Style.current.secondaryText text: formatDateTime ? Utils.formatDateTime(timestamp, globalSettings.locale) : Utils.formatTime(timestamp, globalSettings.locale) font.pixelSize: Style.current.asideTextFontSize