(#464) Set logarithmic scale if PERM is selected as single curve

This commit is contained in:
Magne Sjaastad
2015-12-09 11:32:46 +01:00
parent b80639436c
commit c67a413926
4 changed files with 40 additions and 2 deletions

View File

@@ -436,3 +436,14 @@ void RimWellLogTrack::computeAndSetXRangeMinForLogarithmicScale()
}
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellLogTrack::setLogarithmicScale(bool enable)
{
m_isLogarithmicScaleEnabled = enable;
updateAxisScaleEngine();
computeAndSetXRangeMinForLogarithmicScale();
}