mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
Fix filters
Fix a bug that causes the rowid column to be always shown when changing the filters. I *believe* this was happening since updating to Qt 5.10.
This commit is contained in:
@@ -2429,6 +2429,9 @@ void MainWindow::updateFilter(int column, const QString& value)
|
||||
m_browseTableModel->updateFilter(column, value);
|
||||
browseTableSettings[currentlyBrowsedTableName()].filterValues[column] = value;
|
||||
setRecordsetLabel();
|
||||
|
||||
// This seems to be necessary as a workaround for newer Qt versions. Otherwise the rowid column is always shown after changing the filters.
|
||||
showRowidColumn(browseTableSettings[currentlyBrowsedTableName()].showRowid);
|
||||
}
|
||||
|
||||
void MainWindow::editEncryption()
|
||||
|
||||
Reference in New Issue
Block a user