mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 03:42:05 +02:00
Replace SettingsInfo wallet name with wallet path
This commit is contained in:
parent
3d7090bdba
commit
8eee948f07
@ -87,13 +87,19 @@ Rectangle {
|
|||||||
MoneroComponents.TextBlock {
|
MoneroComponents.TextBlock {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
font.pixelSize: 14
|
font.pixelSize: 14
|
||||||
text: qsTr("Wallet name: ") + translationManager.emptyString
|
text: qsTr("Wallet path: ") + translationManager.emptyString
|
||||||
}
|
}
|
||||||
|
|
||||||
MoneroComponents.TextBlock {
|
MoneroComponents.TextBlock {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
Layout.maximumWidth: 320
|
||||||
font.pixelSize: 14
|
font.pixelSize: 14
|
||||||
text: walletName + translationManager.emptyString
|
text: {
|
||||||
|
var wallet_path = walletPath();
|
||||||
|
if(isIOS)
|
||||||
|
wallet_path = moneroAccountsDir + wallet_path;
|
||||||
|
return wallet_path;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
Loading…
Reference in New Issue
Block a user