mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#9194 Area Fill : Area filled curves should use zero as base line
This commit is contained in:
parent
0e45a90e1f
commit
e6af123094
@ -250,12 +250,12 @@ void RimWellLogCurve::updateCurveAppearance()
|
||||
if ( orientation == RimDepthTrackPlot::DepthOrientation::VERTICAL )
|
||||
{
|
||||
qwtPlotCurve->setOrientation( Qt::Horizontal );
|
||||
qwtPlotCurve->setBaseline( -std::numeric_limits<double>::infinity() );
|
||||
qwtPlotCurve->setBaseline( 0.0 );
|
||||
}
|
||||
else
|
||||
{
|
||||
qwtPlotCurve->setOrientation( Qt::Vertical );
|
||||
qwtPlotCurve->setBaseline( -std::numeric_limits<double>::infinity() );
|
||||
qwtPlotCurve->setBaseline( 0.0 );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user