From 2bd8e2feda40e38fff0a8646aa11478d08d70413 Mon Sep 17 00:00:00 2001 From: Sander Ferdinand Date: Sat, 31 Mar 2018 03:56:56 +0200 Subject: [PATCH] Bring back wallet name at the password dialog --- components/PasswordDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index dabf233a..ada2f175 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -80,7 +80,7 @@ Item { Layout.maximumWidth: 400 * scaleRatio Label { - text: qsTr("Please enter wallet password") + text: root.walletName.length > 0 ? qsTr("Please enter wallet password for: ") + root.walletName : qsTr("Please enter wallet password") anchors.left: parent.left Layout.fillWidth: true