1
0

qml: add wallet button icon

This commit is contained in:
Sander van Grieken
2023-02-07 14:16:29 +01:00
parent b20933de6d
commit f3b3a40ffe
2 changed files with 2 additions and 1 deletions

View File

@@ -157,7 +157,7 @@ Pane {
}
ToolButton {
icon.source: '../../icons/share.png'
icon.color: 'transparent'
enabled: modelData
onClicked: {
var dialog = app.genericShareDialog.createObject(root,
{ title: qsTr('Public key'), text: modelData }

View File

@@ -113,6 +113,7 @@ Pane {
FlatButton {
Layout.fillWidth: true
text: 'Create Wallet'
icon.source: '../../icons/add.png'
onClicked: rootItem.createWallet()
}
}