Skip to content
Snippets Groups Projects
Commit 5bd3ead2 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

chatview: do not show "Edited" on deleted message

Change-Id: I38b4f45cb3220bc52ab227976acd65a6c2d1ef93
parent a9aa1cac
No related branches found
No related tags found
No related merge requests found
...@@ -424,9 +424,9 @@ Control { ...@@ -424,9 +424,9 @@ Control {
id: editedRow id: editedRow
anchors.left: root.bigMsg ? bubble.left : timestampItem.left anchors.left: root.bigMsg ? bubble.left : timestampItem.left
anchors.bottom: parent.bottom 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 anchors.leftMargin: root.bigMsg ? 10 : -timestampItem.width - 16
visible: bubble.isEdited visible: bubble.isEdited && !bubble.isDeleted
z: 1 z: 1
ResponsiveImage { ResponsiveImage {
id: editedImage id: editedImage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment