diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-03-31 04:43:14 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-03-31 04:43:14 -0500 |
| commit | a7594d64a23808d2194ae87fe9b061c2e3a9309d (patch) | |
| tree | 5b591f73f46f088ef23018fd54bfac3eddd2605d | |
| parent | a229f7006fa24a80368a629c704da24a4b9b608e (diff) | |
| parent | 2bd8e2feda40e38fff0a8646aa11478d08d70413 (diff) | |
| download | monzero-gui-a7594d64a23808d2194ae87fe9b061c2e3a9309d.tar.gz monzero-gui-a7594d64a23808d2194ae87fe9b061c2e3a9309d.tar.xz monzero-gui-a7594d64a23808d2194ae87fe9b061c2e3a9309d.zip | |
Merge pull request #1221
2bd8e2f Bring back wallet name at the password dialog
| -rw-r--r-- | components/PasswordDialog.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index 10c5a571..1f75f461 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 |
