Browse Source

Merge branch 'pr2818'

pull/2828/head
tux3 10 years ago
parent
commit
e93c1baa6c
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
  1. 7
      src/widget/loginscreen.cpp

7
src/widget/loginscreen.cpp

@ -172,11 +172,18 @@ void LoginScreen::onLoginUsernameSelected(const QString &name) @@ -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…
Cancel
Save