mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Remove obsolete read only state from database. (#7324)
This commit is contained in:
parent
c914c116e4
commit
bce8c84c26
13 changed files with 28 additions and 120 deletions
|
@ -1201,10 +1201,6 @@ void DatabaseWidget::unlockDatabase(bool accepted)
|
|||
db = m_databaseOpenWidget->database();
|
||||
}
|
||||
replaceDatabase(db);
|
||||
if (db->isReadOnly()) {
|
||||
showMessage(
|
||||
tr("This database is opened in read-only mode. Autosave is disabled."), MessageWidget::Warning, false, -1);
|
||||
}
|
||||
|
||||
restoreGroupEntryFocus(m_groupBeforeLock, m_entryBeforeLock);
|
||||
m_groupBeforeLock = QUuid();
|
||||
|
@ -1466,7 +1462,7 @@ void DatabaseWidget::onGroupChanged()
|
|||
|
||||
void DatabaseWidget::onDatabaseModified()
|
||||
{
|
||||
if (!m_blockAutoSave && config()->get(Config::AutoSaveAfterEveryChange).toBool() && !m_db->isReadOnly()) {
|
||||
if (!m_blockAutoSave && config()->get(Config::AutoSaveAfterEveryChange).toBool()) {
|
||||
save();
|
||||
} else {
|
||||
// Only block once, then reset
|
||||
|
@ -1900,7 +1896,7 @@ bool DatabaseWidget::save()
|
|||
}
|
||||
|
||||
// Read-only and new databases ask for filename
|
||||
if (m_db->isReadOnly() || m_db->filePath().isEmpty()) {
|
||||
if (m_db->filePath().isEmpty()) {
|
||||
return saveAs();
|
||||
}
|
||||
|
||||
|
@ -2056,7 +2052,6 @@ bool DatabaseWidget::saveBackup()
|
|||
|
||||
if (!newFilePath.isEmpty()) {
|
||||
// Ensure we don't recurse back into this function
|
||||
m_db->setReadOnly(false);
|
||||
m_db->setFilePath(newFilePath);
|
||||
m_saveAttempts = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue