fixes 0003465: Groups breaking dependency graph

This commit is contained in:
wmayer
2018-09-26 22:21:52 +02:00
parent 1fb55d8d0a
commit 4181e1c2a7

View File

@@ -548,7 +548,8 @@ void Document::exportGraphviz(std::ostream& out) const
if(CSSubgraphs) {
//first build up the coordinate system subgraphs
for (auto objectIt : d->objectArray) {
if (objectIt->hasExtension(GeoFeatureGroupExtension::getExtensionClassTypeId()) && objectIt->getInList().empty())
// do not require an empty inlist (#0003465: Groups breaking dependency graph)
if (objectIt->hasExtension(GeoFeatureGroupExtension::getExtensionClassTypeId()))
recursiveCSSubgraphs(objectIt, nullptr);
}
}