parent
b34f0a4736
commit
504b4f5947
|
@ -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 "";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue