mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
hightlight table names in the sql edit window
This commit is contained in:
@@ -970,6 +970,10 @@ void MainWindow::populateStructure()
|
||||
return;
|
||||
}
|
||||
db.updateSchema();
|
||||
QStringList tblnames = db.getTableNames();
|
||||
sqliteHighlighter->setTableNames(tblnames);
|
||||
// logWin->userSqliteHighlighter()->setTableNames(tblnames);
|
||||
// logWin->appSqliteHighlighter()->setTableNames(tblnames);
|
||||
tableMap::ConstIterator it;
|
||||
|
||||
for ( it = db.tbmap.begin(); it != db.tbmap.end(); ++it ) {
|
||||
|
||||
Reference in New Issue
Block a user