diff options
| author | Jacob Brydolf <jacob@brydolf.net> | 2016-10-11 00:19:11 +0200 |
|---|---|---|
| committer | Jacob Brydolf <jacob@brydolf.net> | 2016-10-11 00:19:11 +0200 |
| commit | 010cce4133c3c35405cbaaae83e9a39a63428e02 (patch) | |
| tree | 4c1e3cde4b10c5ceb999e3078c4e46604820423e | |
| parent | 77445ad0d47b39061d9592b32c485afb6a676671 (diff) | |
| download | monzero-gui-010cce4133c3c35405cbaaae83e9a39a63428e02.tar.gz monzero-gui-010cce4133c3c35405cbaaae83e9a39a63428e02.tar.xz monzero-gui-010cce4133c3c35405cbaaae83e9a39a63428e02.zip | |
settings page: Empty password field on seed view
| -rw-r--r-- | components/PasswordDialog.qml | 2 | ||||
| -rw-r--r-- | pages/Settings.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index 9edf87fc..69a2ae91 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -36,7 +36,7 @@ import QtQuick.Controls.Styles 1.4 Dialog { id: root - readonly property alias password: passwordInput.text + property alias password: passwordInput.text standardButtons: StandardButton.Ok + StandardButton.Cancel ColumnLayout { id: column diff --git a/pages/Settings.qml b/pages/Settings.qml index d46186af..973ff773 100644 --- a/pages/Settings.qml +++ b/pages/Settings.qml @@ -76,7 +76,7 @@ Rectangle { memoTextInput.text = currentWallet.seed showSeedButton.visible = false } - + settingsPasswordDialog.password = "" } onRejected: { |
