1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-21 16:05:26 +02:00

CallMessageDelegate: fix missed call bubble color

Change-Id: Ib445cd2b4071b859e877b5192612c46517b475e7
This commit is contained in:
Franck LAURENT 2023-03-10 11:36:30 -05:00
parent c746d2786b
commit 911a9af00a

View file

@ -61,8 +61,8 @@ SBSMessageBase {
if (ConfId === "" && Duration === 0) { if (ConfId === "" && Duration === 0) {
// If missed, we can add a darker pattern // If missed, we can add a darker pattern
return isOutgoing ? return isOutgoing ?
Qt.lighter(CurrentConversation.color, 1.5) : Qt.lighter(CurrentConversation.color, 1.15) :
Qt.darker(JamiTheme.messageInBgColor, 1.5) Qt.darker(JamiTheme.messageInBgColor, 1.15)
} }
return isOutgoing ? CurrentConversation.color : JamiTheme.messageInBgColor return isOutgoing ? CurrentConversation.color : JamiTheme.messageInBgColor
} }