#2944 Stop auto-zooming on load of Well Log Curves.

This commit is contained in:
Gaute Lindkvist
2018-05-23 11:28:57 +02:00
parent 87e91069e0
commit 208313f672
12 changed files with 122 additions and 37 deletions

View File

@@ -168,9 +168,15 @@ void RimWellLogFileCurve::onLoadDataAndUpdate(bool updateParentPlot)
}
m_qwtPlotCurve->setLineSegmentStartStopIndices(m_curveData->polylineStartStopIndices());
updateZoomInParentPlot();
if (updateParentPlot)
{
updateZoomInParentPlot();
}
if (m_parentQwtPlot) m_parentQwtPlot->replot();
if (m_parentQwtPlot)
{
m_parentQwtPlot->replot();
}
}
}