aboutsummaryrefslogtreecommitdiff
path: root/components/PasswordDialog.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-03-31 03:56:56 +0200
committerSander Ferdinand <sa.ferdinand@gmail.com>2018-03-31 03:56:56 +0200
commit2bd8e2feda40e38fff0a8646aa11478d08d70413 (patch)
tree1f0107419b3d80c1a6675f43276f33a2b5c34d6b /components/PasswordDialog.qml
parent959c2fcc32d515f90cb39933689a37418197a095 (diff)
downloadmonzero-gui-2bd8e2feda40e38fff0a8646aa11478d08d70413.tar.gz
monzero-gui-2bd8e2feda40e38fff0a8646aa11478d08d70413.tar.xz
monzero-gui-2bd8e2feda40e38fff0a8646aa11478d08d70413.zip
Bring back wallet name at the password dialog
Diffstat (limited to 'components/PasswordDialog.qml')
-rw-r--r--components/PasswordDialog.qml2
1 files changed, 1 insertions, 1 deletions
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