mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-22 22:28:08 +00:00
QT: set nothing on chat message when the user hasn't receive it
This commit is contained in:
parent
21e87b0ff5
commit
c2cde508e1
1 changed files with 2 additions and 1 deletions
|
|
@ -41,10 +41,11 @@ Item {
|
|||
], $chatEntry.status)
|
||||
|
||||
readonly property bool isRead: $chatEntry.status === ChatModel.MessageStatusDisplayed
|
||||
readonly property bool isDeliveredToUser: $chatEntry.status === ChatModel.MessageStatusDeliveredToUser
|
||||
|
||||
icon: isNotDelivered
|
||||
? 'chat_error'
|
||||
: (isRead ? 'chat_read' : 'chat_delivered')
|
||||
: (isRead ? 'chat_read' : (isDeliveredToUser ? 'chat_delivered' : ''))
|
||||
iconSize: ChatStyle.entry.message.outgoing.sendIconSize
|
||||
|
||||
MouseArea {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue