Qt ui: fix minimum pass length

old-commit-hash: a0987cb098
This commit is contained in:
Willem Melching
2021-03-01 13:55:48 +01:00
parent ca8207b5c0
commit d83935e19d
+1 -1
View File
@@ -78,7 +78,7 @@ void InputDialog::handleInput(QString s) {
}
if (!QString::compare(s,"")) {
if (line->text().length() > minLength){
if (line->text().length() >= minLength){
done(QDialog::Accepted);
emitText(line->text());
} else {