mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Use length of existing password for the password generator (#2318)
Add optional length parameter to PasswordGeneratorWidget::reset() (default=0), which when >0 sets the legth SpinBox's value to the value passed in. The EditEntryWidget already called reset() when the password was known, so the current length was just added to this call (accounts for empty passwords) If entry edit is cancelled, return the password generator length to the application default or last committed length if available. This is done by calling reseting the password generator in EditEntryWidget::cancel() when the edit page is being closed Fixes #2180
This commit is contained in:
parent
e7c5e17a8e
commit
d4112fe2bf
3 changed files with 10 additions and 3 deletions
|
@ -681,7 +681,7 @@ void EditEntryWidget::setForms(const Entry* entry, bool restore)
|
|||
m_mainUi->notesHint->setVisible(config()->get("security/hidenotes").toBool());
|
||||
m_mainUi->togglePasswordGeneratorButton->setChecked(false);
|
||||
m_mainUi->togglePasswordGeneratorButton->setDisabled(m_history);
|
||||
m_mainUi->passwordGenerator->reset();
|
||||
m_mainUi->passwordGenerator->reset(entry->password().length());
|
||||
|
||||
m_advancedUi->attachmentsWidget->setReadOnly(m_history);
|
||||
m_advancedUi->addAttributeButton->setEnabled(!m_history);
|
||||
|
@ -934,6 +934,7 @@ void EditEntryWidget::cancel()
|
|||
QMessageBox::Cancel | QMessageBox::Save | QMessageBox::Discard,
|
||||
QMessageBox::Cancel);
|
||||
if (result == QMessageBox::Cancel) {
|
||||
m_mainUi->passwordGenerator->reset();
|
||||
return;
|
||||
}
|
||||
if (result == QMessageBox::Save) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue