(#396) Added scrollbar for panning of well trace plots

This commit is contained in:
Pål Hagen
2015-09-01 14:50:26 +02:00
parent 7103b196e3
commit 2de4d0df29
9 changed files with 233 additions and 28 deletions

View File

@@ -33,6 +33,7 @@
#include "RimGeoMechPropertyFilterCollection.h"
#include "RimWellPathCollection.h"
#include "RimView.h"
#include "RimWellLogPlot.h"
namespace caf
@@ -104,6 +105,13 @@ void RicDeleteItemExec::redo()
{
wellPathColl->scheduleGeometryRegenAndRedrawViews();
}
RimWellLogPlot* wellLogPlot;
parentObj->firstAnchestorOrThisOfType(wellLogPlot);
if (wellLogPlot)
{
wellLogPlot->updateAvailableDepthRange();
}
}
}