mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Show in-edit-mode warning when database is locked.
This commit is contained in:
parent
50cbd80925
commit
cda5e990ac
3 changed files with 17 additions and 3 deletions
|
@ -189,7 +189,7 @@ bool DatabaseTabWidget::closeDatabase(Database* db)
|
|||
if (dbName.right(1) == "*") {
|
||||
dbName.chop(1);
|
||||
}
|
||||
if (dbStruct.dbWidget->currentMode() == DatabaseWidget::EditMode && db->hasKey()) {
|
||||
if (dbStruct.dbWidget->isInEditMode() && db->hasKey()) {
|
||||
QMessageBox::StandardButton result =
|
||||
MessageBox::question(
|
||||
this, tr("Close?"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue