parent
0a9852758d
commit
fc5f7e8270
|
@ -148,8 +148,9 @@ Item {
|
||||||
target: txtToSecondary
|
target: txtToSecondary
|
||||||
anchors.right: idtToContact.left
|
anchors.right: idtToContact.left
|
||||||
anchors.rightMargin: Style.current.halfPadding
|
anchors.rightMargin: Style.current.halfPadding
|
||||||
width: metSecondary.elidedWidth
|
width: txtToSecondary.visible ? metSecondary.elidedWidth : 0
|
||||||
text: metSecondary.elidedText
|
text: metSecondary.elidedText
|
||||||
|
visible: root.toAccount.address !== Constants.zeroAddress
|
||||||
}
|
}
|
||||||
PropertyChanges {
|
PropertyChanges {
|
||||||
target: idtToContact
|
target: idtToContact
|
||||||
|
@ -196,7 +197,8 @@ Item {
|
||||||
font.pixelSize: 15
|
font.pixelSize: 15
|
||||||
height: 22
|
height: 22
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.right: txtToSeparator.left
|
anchors.right: txtToSeparator.visible ? txtToSeparator.left : idtToContact.left
|
||||||
|
anchors.rightMargin: txtToSeparator.visible ? 0 : Style.current.halfPadding
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
horizontalAlignment: Text.AlignRight
|
horizontalAlignment: Text.AlignRight
|
||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
|
Loading…
Reference in New Issue