Redo 'delete entries no confirm' functionality & unit-tests (#5812)

* Fixes #5232
This commit is contained in:
Bernhard Berg 2020-12-12 18:14:18 +01:00 committed by GitHub
parent c9d1512748
commit a6f01349e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 41 additions and 12 deletions

View file

@ -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) {