parent
aa4bdaf910
commit
5d837c450c
|
@ -512,6 +512,7 @@ property Component sendTransactionModalComponent: SignTransactionModal {}
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
anchors.topMargin: browserHeader.height
|
anchors.topMargin: browserHeader.height
|
||||||
focus: true
|
focus: true
|
||||||
|
url: "https://dap.ps"
|
||||||
webChannel: channel
|
webChannel: channel
|
||||||
onLinkHovered: function(hoveredUrl) {
|
onLinkHovered: function(hoveredUrl) {
|
||||||
if (hoveredUrl === "")
|
if (hoveredUrl === "")
|
||||||
|
|
|
@ -228,7 +228,7 @@ Item {
|
||||||
//% "Wallet address"
|
//% "Wallet address"
|
||||||
label: qsTrId("wallet-address")
|
label: qsTrId("wallet-address")
|
||||||
text: walletModel.getDefaultAddress()
|
text: walletModel.getDefaultAddress()
|
||||||
textToCopy: profileModel.profile.address
|
textToCopy: text
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: 24
|
anchors.leftMargin: 24
|
||||||
anchors.top: ensUsername.bottom
|
anchors.top: ensUsername.bottom
|
||||||
|
@ -294,11 +294,9 @@ Item {
|
||||||
Image {
|
Image {
|
||||||
id: image1
|
id: image1
|
||||||
height: 50
|
height: 50
|
||||||
width: 50
|
width: height
|
||||||
sourceSize.width: width
|
source: Style.current.name === Constants.lightThemeName ? "../../../../../shared/img/status-logo-light-theme.svg" : "../../../../../shared/img/status-logo.svg"
|
||||||
sourceSize.height: height
|
sourceSize: Qt.size(width, height)
|
||||||
fillMode: Image.PreserveAspectFit
|
|
||||||
source: "../../../../../shared/img/status-logo.png"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
|
|
Loading…
Reference in New Issue