mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Redo 'delete entries no confirm' functionality & unit-tests (#5812)
* Fixes #5232
This commit is contained in:
parent
c9d1512748
commit
a6f01349e8
6 changed files with 41 additions and 12 deletions
|
@ -571,6 +571,8 @@ bool DatabaseWidget::confirmDeleteEntries(QList<Entry*> entries, bool permanent)
|
|||
MessageBox::Cancel);
|
||||
|
||||
return answer == MessageBox::Delete;
|
||||
} else if (config()->get(Config::Security_NoConfirmMoveEntryToRecycleBin).toBool()) {
|
||||
return true;
|
||||
} else {
|
||||
QString prompt;
|
||||
if (entries.size() == 1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue