Minor changes to address comments

This commit is contained in:
Jonathan White 2018-01-28 10:14:36 -05:00
parent 3db9a86a4c
commit 6a4b275d40
No known key found for this signature in database
GPG key ID: 440FC65F2E0C6E01
4 changed files with 7 additions and 10 deletions

View file

@ -325,7 +325,7 @@ bool DatabaseTabWidget::saveDatabase(Database* db, QString filePath)
dbStruct.dbWidget->blockAutoReload(true);
// TODO: Make this async, but lock out the database widget to prevent re-entrance
bool useAtomicSaves = config()->get("UseAtomicSaves").toBool();
bool useAtomicSaves = config()->get("UseAtomicSaves", true).toBool();
QString errorMessage = db->saveToFile(filePath, useAtomicSaves, config()->get("BackupBeforeSave").toBool());
dbStruct.dbWidget->blockAutoReload(false);