#836 Fixed missing/wrong zoom update for well log plots when opening project.

Refactored the zoom update method names
This commit is contained in:
Jacob Støren
2016-09-13 09:59:34 +02:00
parent 2ea167337f
commit 9041e4a582
14 changed files with 41 additions and 23 deletions

View File

@@ -70,11 +70,11 @@ void RicWellLogPlotTrackFeatureImpl::moveCurvesToWellLogPlotTrack(RimWellLogTrac
for (std::set<RimWellLogTrack*>::iterator tIt = srcTracks.begin(); tIt != srcTracks.end(); ++tIt)
{
(*tIt)->zoomAllXAndZoomAllDepthOnOwnerPlot();
(*tIt)->updateXZoomAndParentPlotDepthZoom();
}
destTrack->loadDataAndUpdate();
destTrack->zoomAllXAndZoomAllDepthOnOwnerPlot();
destTrack->updateXZoomAndParentPlotDepthZoom();
destTrack->updateConnectedEditors();
}