#2609 Update the visualization when the well path geometry definition changes

This commit is contained in:
Jacob Støren
2018-07-02 14:51:17 +02:00
parent 0f39356fcb
commit dc95b217c5
7 changed files with 120 additions and 15 deletions

View File

@@ -60,6 +60,7 @@ void RicDeleteWellPathTargetFeature::onActionTriggered(bool isChecked)
}
wellGeomDef->updateConnectedEditors();
wellGeomDef->updateWellPathVisualization();
}
}

View File

@@ -65,6 +65,7 @@ void RicNewWellPathListTargetFeature::onActionTriggered(bool isChecked)
wellGeomDef->insertTarget(targets[0], new RimWellPathTarget);
wellGeomDef->updateConnectedEditors();
wellGeomDef->updateWellPathVisualization();
return;
}
@@ -76,6 +77,7 @@ void RicNewWellPathListTargetFeature::onActionTriggered(bool isChecked)
wellGeomDef->insertTarget(nullptr, new RimWellPathTarget);
wellGeomDef->updateConnectedEditors();
wellGeomDef->updateWellPathVisualization();
}
}