fix(Chat): big space between username and time

Closes #6832
This commit is contained in:
Alexandra Betouni 2022-08-09 18:42:54 +03:00 committed by Alexandra Betouni
parent b34f0a4736
commit 504b4f5947
2 changed files with 4 additions and 4 deletions

View File

@ -7,8 +7,8 @@ import utils 1.0
SVGImage {
id: root
width: 10
height: 10
width: visible ? 10 : 0
height: visible ? 10 : 0
property int trustStatus: Constants.trustStatus.unknown
@ -22,4 +22,4 @@ SVGImage {
return "";
}
}
}
}

View File

@ -393,7 +393,7 @@ Item {
VerificationLabel {
id: trustStatus
anchors.left: chatName.right
anchors.leftMargin: 4
anchors.leftMargin: visible ? 4 : 0
anchors.bottom: chatName.bottom
anchors.bottomMargin: 4
visible: !root.amISender && chatName.visible