From e5b9a1b9d79500573f8ce2865fd515a8adae53b2 Mon Sep 17 00:00:00 2001 From: Jacob Brydolf Date: Tue, 11 Oct 2016 01:00:19 +0200 Subject: [PATCH] settings page: strict password check --- pages/Settings.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }