Edits via the in-place editor now propagate to the Edit Cell

This commit is contained in:
Justin Clift
2016-07-26 15:35:21 +01:00
parent e0bcf1e3c8
commit 9fe42b1399

View File

@@ -530,7 +530,7 @@ bool MainWindow::fileClose()
delete m_browseTableModel;
m_browseTableModel = new SqliteTableModel(this, &db, PreferencesDialog::getSettingsValue("db", "prefetchsize").toInt());
connect(ui->dataTable->filterHeader(), SIGNAL(filterChanged(int,QString)), this, SLOT(updateFilter(int,QString)));
connect(m_browseTableModel, SIGNAL(dataChanged(QModelIndex,QModelIndex,QVector<int>)), this, SLOT(dataTableSelectionChanged(QModelIndex)));
connect(m_browseTableModel, SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SLOT(dataTableSelectionChanged(QModelIndex)));
// Reset the edit cell dock
editDock->reset();