Skip to content

Commit

Permalink
fixes 0003465: Groups breaking dependency graph
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Sep 26, 2018
1 parent 00bf21d commit 7fc487a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/App/Document.cpp
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 7fc487a

Please sign in to comment.