mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
More ProfileSelect fixes
This commit is contained in:
parent
e570e0cedc
commit
eed9aea63a
@ -102,7 +102,7 @@ void ProfileSelect::editProfile()
|
||||
QMessageBox::warning(this,"Error","Incorrect Password",QMessageBox::Ok);
|
||||
} else {
|
||||
QMessageBox::warning(this,"Error","You entered the password wrong too many times.",QMessageBox::Ok);
|
||||
return;
|
||||
reject();
|
||||
}
|
||||
}
|
||||
} while (tries<3);
|
||||
@ -190,7 +190,11 @@ void ProfileSelect::on_listView_activated(const QModelIndex &index)
|
||||
if (!profile->Exists("Password")) {
|
||||
m_selectedProfile=name;
|
||||
pref["Profile"]=name;
|
||||
accept();
|
||||
return;
|
||||
} else {
|
||||
int tries=0;
|
||||
do {
|
||||
QDialog dialog(this,Qt::Dialog);
|
||||
QLineEdit *e=new QLineEdit(&dialog);
|
||||
e->setEchoMode(QLineEdit::Password);
|
||||
@ -204,18 +208,19 @@ void ProfileSelect::on_listView_activated(const QModelIndex &index)
|
||||
if (QCryptographicHash::hash(ba,QCryptographicHash::Sha1).toHex()==(*profile)["Password"]) {
|
||||
m_selectedProfile=name;
|
||||
pref["Profile"]=name;
|
||||
} else {
|
||||
m_tries++;
|
||||
if (m_tries>2) {
|
||||
QMessageBox::warning(this,"Error","You entered an Incorrect Password too many times. Exiting!",QMessageBox::Ok);
|
||||
this->reject();
|
||||
} else {
|
||||
QMessageBox::warning(this,"Error","Incorrect Password",QMessageBox::Ok);
|
||||
}
|
||||
accept();
|
||||
return;
|
||||
}
|
||||
tries++;
|
||||
if (tries<3) {
|
||||
QMessageBox::warning(this,"Error","Incorrect Password",QMessageBox::Ok);
|
||||
} else {
|
||||
QMessageBox::warning(this,"Error","You entered an Incorrect Password too many times. Exiting!",QMessageBox::Ok);
|
||||
}
|
||||
accept();
|
||||
} while (tries<3);
|
||||
}
|
||||
reject();
|
||||
return;
|
||||
}
|
||||
|
||||
void ProfileSelect::on_listView_customContextMenuRequested(const QPoint &pos)
|
||||
|
Loading…
Reference in New Issue
Block a user