Add Search ability

This commit is contained in:
Miguel Jacq 2025-11-01 17:44:23 +11:00
parent 72862f9a4f
commit 53e99af912
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
9 changed files with 224 additions and 9 deletions

View file

@ -91,7 +91,9 @@ class SettingsDialog(QDialog):
return
try:
self._db.rekey(new_key)
QMessageBox.information(self, "Key changed", "The database key was updated.")
QMessageBox.information(
self, "Key changed", "The database key was updated."
)
except Exception as e:
QMessageBox.critical(self, "Error", f"Could not change key:\n{e}")