mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-24 12:59:58 -06:00
no need to set the db into dirty state
we have rollbacked/committed anyway
This commit is contained in:
@@ -144,12 +144,11 @@ void ImportCsvDialog::accept()
|
||||
}
|
||||
|
||||
// Everything ok, release the savepoint
|
||||
if(!pdb->executeSQL("RELEASE SAVEPOINT CSVIMPORT;"))
|
||||
if(!pdb->executeSQL("RELEASE SAVEPOINT CSVIMPORT;", false))
|
||||
return rollback(this, pdb, progress);
|
||||
pdb->setDirty(true);
|
||||
|
||||
QApplication::restoreOverrideCursor(); // restore original cursor
|
||||
QDialog::accept();
|
||||
return;
|
||||
}
|
||||
|
||||
void ImportCsvDialog::updatePreview()
|
||||
|
||||
Reference in New Issue
Block a user