mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Login window: disable Load automatically
if profile is encrypted
This commit is contained in:
parent
b804544408
commit
2e0e8f778f
|
@ -172,11 +172,18 @@ void LoginScreen::onLoginUsernameSelected(const QString &name)
|
|||
{
|
||||
ui->loginPasswordLabel->show();
|
||||
ui->loginPassword->show();
|
||||
// there is no way to do autologin if profile is encrypted, and
|
||||
// visible option confuses users into thinking that it is possible,
|
||||
// thus disable it (and hope that users won't think that it's a bug)
|
||||
ui->autoLoginCB->setEnabled(false);
|
||||
ui->autoLoginCB->setToolTip(tr("Password protected profile can't be loaded automatically."));
|
||||
}
|
||||
else
|
||||
{
|
||||
ui->loginPasswordLabel->hide();
|
||||
ui->loginPassword->hide();
|
||||
ui->autoLoginCB->setEnabled(true);
|
||||
ui->autoLoginCB->setToolTip("");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user