diff options
| author | Jacob Brydolf <jacob@brydolf.net> | 2016-10-11 01:00:19 +0200 |
|---|---|---|
| committer | Jacob Brydolf <jacob@brydolf.net> | 2016-10-11 01:00:19 +0200 |
| commit | e5b9a1b9d79500573f8ce2865fd515a8adae53b2 (patch) | |
| tree | 76c4cc5fdfc5ab56cc438185794db3f089b24d86 | |
| parent | 010cce4133c3c35405cbaaae83e9a39a63428e02 (diff) | |
| download | monzero-gui-e5b9a1b9d79500573f8ce2865fd515a8adae53b2.tar.gz monzero-gui-e5b9a1b9d79500573f8ce2865fd515a8adae53b2.tar.xz monzero-gui-e5b9a1b9d79500573f8ce2865fd515a8adae53b2.zip | |
settings page: strict password check
| -rw-r--r-- | pages/Settings.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/Settings.qml b/pages/Settings.qml index 973ff773..8e73b8fe 100644 --- a/pages/Settings.qml +++ b/pages/Settings.qml @@ -72,7 +72,7 @@ Rectangle { id: settingsPasswordDialog standardButtons: StandardButton.Ok + StandardButton.Cancel onAccepted: { - if(appWindow.password == settingsPasswordDialog.password){ + if(appWindow.password === settingsPasswordDialog.password){ memoTextInput.text = currentWallet.seed showSeedButton.visible = false } |
