We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b748ac6 commit f4216beCopy full SHA for f4216be
src/providers/mssql/qgsmssqldataitems.cpp
@@ -257,7 +257,11 @@ QVector<QgsDataItem *> QgsMssqlConnectionItem::createChildren()
257
}
258
else
259
{
260
- //set all as populated
+ //set all as populated -- we also need to do this for newly created items, because they won't yet be children of this item
261
+ for ( QgsDataItem *child : qgis::as_const( children ) )
262
+ {
263
+ child->setState( Populated );
264
+ }
265
setAsPopulated();
266
267
0 commit comments