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 { SVGImage {
id: root id: root
width: 10 width: visible ? 10 : 0
height: 10 height: visible ? 10 : 0
property int trustStatus: Constants.trustStatus.unknown property int trustStatus: Constants.trustStatus.unknown
@ -22,4 +22,4 @@ SVGImage {
return ""; return "";
} }
} }
} }

View File

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