#2632 Export Completions : Remove support for export of all well path completions

This commit is contained in:
Magne Sjaastad
2018-04-06 13:20:21 +02:00
parent a40c4df6b3
commit e50e34feb4
7 changed files with 7 additions and 56 deletions

View File

@@ -154,7 +154,10 @@ std::vector<RimWellPath*> RicWellPathExportCompletionDataFeature::selectedWellPa
{
for (auto wellPath : wellPathCollection->wellPaths())
{
wellPaths.push_back(wellPath);
if (wellPath->showWellPath())
{
wellPaths.push_back(wellPath);
}
}
}
}