Fix database master key dirtying

* When removing portions of the master key, the key is marked dirty for saving
* Properly clear password and other fields in edit entry widget and password widgets
This commit is contained in:
Jonathan White 2019-03-30 21:31:32 -04:00
parent edef225eab
commit cb2900f5a9
No known key found for this signature in database
GPG key ID: 440FC65F2E0C6E01
4 changed files with 20 additions and 4 deletions

View file

@ -993,6 +993,13 @@ void EditEntryWidget::clear()
{
m_entry = nullptr;
m_db.reset();
m_mainUi->titleEdit->setText("");
m_mainUi->passwordEdit->setText("");
m_mainUi->passwordRepeatEdit->setText("");
m_mainUi->urlEdit->setText("");
m_mainUi->notesEdit->clear();
m_entryAttributes->clear();
m_advancedUi->attachmentsWidget->clearAttachments();
m_autoTypeAssoc->clear();