fixes 0003465: Groups breaking dependency graph

This commit is contained in:
wmayer
2018-09-26 22:21:52 +02:00
parent 00bf21dc26
commit 7fc487ae6f

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);
}
}