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