mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
Fix loading settings in Export SQL dialog
Due to a copy-paste error we weren't loading the values of the checkboxes in the Export SQL dialog correctly.
This commit is contained in:
@@ -24,7 +24,7 @@ ExportSqlDialog::ExportSqlDialog(DBBrowserDB* db, QWidget* parent, const QString
|
||||
|
||||
// Load settings
|
||||
ui->checkColNames->setChecked(Settings::getValue("exportsql", "insertcolnames").toBool());
|
||||
ui->checkColNames->setChecked(Settings::getValue("exportsql", "insertmultiple").toBool());
|
||||
ui->checkMultiple->setChecked(Settings::getValue("exportsql", "insertmultiple").toBool());
|
||||
ui->comboOldSchema->setCurrentIndex(Settings::getValue("exportsql", "oldschema").toInt());
|
||||
|
||||
// Get list of tables to export
|
||||
|
||||
Reference in New Issue
Block a user