aboutsummaryrefslogtreecommitdiff
path: root/src/lock.cpp
diff options
context:
space:
mode:
authorLibravatar Gianluca Boiano <491117+M0Rf30@users.noreply.github.com>2022-06-27 13:14:14 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-27 16:44:14 +0530
commit79b2b7915a7be4962c4b67db5bf87a36a782dbd4 (patch)
treea17a81e478a7889bd5c080a2eb8a9c12247b2919 /src/lock.cpp
parentced5547de36d88f071f086258e32d21cdcda1e0d (diff)
downloadwhatsie-79b2b7915a7be4962c4b67db5bf87a36a782dbd4.tar.gz
whatsie-79b2b7915a7be4962c4b67db5bf87a36a782dbd4.zip
chore: set a minimum of 4 digits for the lock code (#56)
* chore: set a minimum of 4 digits for the lock code coming from other applications (i.e. telegram) we expect a 4 digit PIN as minimum requirement * chore: set ui messages on pass code lenght accordingly
Diffstat (limited to 'src/lock.cpp')
-rw-r--r--src/lock.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lock.cpp b/src/lock.cpp
index 6b86f68..3c47fb2 100644
--- a/src/lock.cpp
+++ b/src/lock.cpp
@@ -141,14 +141,14 @@ void Lock::on_passcode1_textChanged(const QString &arg1) {
if (arg1.contains(" ")) {
ui->passcode1->setText(arg1.simplified());
}
- ui->setPass->setEnabled(arg1.length() > 4 && arg1 == ui->passcode2->text());
+ ui->setPass->setEnabled(arg1.length() > 3 && arg1 == ui->passcode2->text());
}
void Lock::on_passcode2_textChanged(const QString &arg1) {
if (arg1.contains(" ")) {
ui->passcode2->setText(arg1.simplified());
}
- ui->setPass->setEnabled(arg1.length() > 4 && arg1 == ui->passcode1->text());
+ ui->setPass->setEnabled(arg1.length() > 3 && arg1 == ui->passcode1->text());
}
void Lock::on_setPass_clicked() {
@@ -188,7 +188,7 @@ void Lock::on_passcodeLogin_textChanged(const QString &arg1) {
ui->passcodeLogin->setText(arg1.simplified());
}
ui->wrong->hide();
- ui->unlock->setEnabled(arg1.length() > 4);
+ ui->unlock->setEnabled(arg1.length() > 3);
}
void Lock::lock_app() {