1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-09-10 12:03:18 +02:00

chatview: do not show "Edited" on deleted message

Change-Id: I38b4f45cb3220bc52ab227976acd65a6c2d1ef93
This commit is contained in:
Sébastien Blin 2024-05-08 11:25:19 -04:00
parent a9aa1cac80
commit 5bd3ead22d

View file

@ -424,9 +424,9 @@ Control {
id: editedRow
anchors.left: root.bigMsg ? bubble.left : timestampItem.left
anchors.bottom: parent.bottom
anchors.bottomMargin: root.bigMsg || bubble.isDeleted ? 6 : 10
anchors.bottomMargin: root.bigMsg ? 6 : 10
anchors.leftMargin: root.bigMsg ? 10 : -timestampItem.width - 16
visible: bubble.isEdited
visible: bubble.isEdited && !bubble.isDeleted
z: 1
ResponsiveImage {
id: editedImage