1
0

move wallet name to qewallet

This commit is contained in:
Sander van Grieken
2022-03-25 09:15:23 +01:00
parent ead4600da6
commit d427be70b2
5 changed files with 8 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ import org.electrum 1.0
Pane {
id: rootItem
property string title: Daemon.walletName + ' - ' + qsTr('Addresses')
property string title: Daemon.currentWallet.name + ' - ' + qsTr('Addresses')
ColumnLayout {
id: layout

View File

@@ -6,7 +6,7 @@ import QtQml 2.6
Item {
id: rootItem
property string title: Daemon.walletName
property string title: Daemon.currentWallet.name
property QtObject menu: Menu {
id: menu

View File

@@ -26,7 +26,7 @@ Pane {
columns: 4
Label { text: 'Wallet'; Layout.columnSpan: 2 }
Label { text: Daemon.walletName; Layout.columnSpan: 2; color: Material.accentColor }
Label { text: Daemon.currentWallet.name; Layout.columnSpan: 2; color: Material.accentColor }
Label { text: 'derivation path (BIP32)'; visible: Daemon.currentWallet.isDeterministic; Layout.columnSpan: 2 }
Label { text: Daemon.currentWallet.derivationPath; visible: Daemon.currentWallet.isDeterministic; color: Material.accentColor; Layout.columnSpan: 2 }