mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Remove inline password generator when editing entries
* Always use a pop-up generator to avoid cluttering the user interface and making it clear that a password is being created
This commit is contained in:
parent
fe1189ea79
commit
fb5173cebd
12 changed files with 237 additions and 298 deletions
|
@ -187,18 +187,13 @@ void PasswordGeneratorWidget::saveSettings()
|
|||
config()->set("generator/Type", m_ui->tabWidget->currentIndex());
|
||||
}
|
||||
|
||||
void PasswordGeneratorWidget::reset(int length)
|
||||
void PasswordGeneratorWidget::setPasswordLength(int length)
|
||||
{
|
||||
m_ui->editNewPassword->setText("");
|
||||
if (length > 0) {
|
||||
m_ui->spinBoxLength->setValue(length);
|
||||
} else {
|
||||
m_ui->spinBoxLength->setValue(config()->get("generator/Length", PasswordGenerator::DefaultLength).toInt());
|
||||
}
|
||||
|
||||
setStandaloneMode(false);
|
||||
setPasswordVisible(config()->get("security/passwordscleartext").toBool());
|
||||
updateGenerator();
|
||||
}
|
||||
|
||||
void PasswordGeneratorWidget::setStandaloneMode(bool standalone)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue