mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Ask to apply generated password when commiting an entry edit
* Rename saveEntry to commitEntry to accurately capture its purpose * Add message to user when commit is successful * Made all inline messages in edit entry view 2 sec visibility
This commit is contained in:
parent
397d804cdd
commit
cd3e1fc27e
6 changed files with 51 additions and 24 deletions
|
@ -776,21 +776,18 @@ void DatabaseWidget::switchToView(bool accepted)
|
|||
m_newGroup->setParent(m_newParent);
|
||||
m_groupView->setCurrentGroup(m_newGroup);
|
||||
m_groupView->expandGroup(m_newParent);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
delete m_newGroup;
|
||||
}
|
||||
|
||||
m_newGroup = nullptr;
|
||||
m_newParent = nullptr;
|
||||
}
|
||||
else if (m_newEntry) {
|
||||
} else if (m_newEntry) {
|
||||
if (accepted) {
|
||||
m_newEntry->setGroup(m_newParent);
|
||||
m_entryView->setFocus();
|
||||
m_entryView->setCurrentEntry(m_newEntry);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
delete m_newEntry;
|
||||
}
|
||||
|
||||
|
@ -798,6 +795,10 @@ void DatabaseWidget::switchToView(bool accepted)
|
|||
m_newParent = nullptr;
|
||||
}
|
||||
|
||||
if (accepted) {
|
||||
showMessage(tr("Entry updated successfully."), MessageWidget::Positive, false, 2000);
|
||||
}
|
||||
|
||||
setCurrentWidget(m_mainWidget);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue