#3654 2d Maps: hide cell result from overlay info when using column aggregation.

This commit is contained in:
Gaute Lindkvist
2018-11-09 11:43:16 +01:00
parent 669b40df20
commit c716529542

View File

@@ -581,7 +581,10 @@ QString Rim3dOverlayInfoConfig::resultInfoText(const HistogramData& histData, Ri
if (isResultsInfoRelevant)
{
QString propName = eclipseView->cellResult()->resultVariableUiShortName();
infoText += QString("<b>Cell Property:</b> %1 ").arg(propName);
if (!contourMap->contourMapProjection()->isColumnResult())
{
infoText += QString("<b>Cell Property:</b> %1 ").arg(propName);
}
infoText += QString("<br><b>Statistics:</b> Current Time Step and Visible Cells");
infoText += QString("<table border=0 cellspacing=5 >"
"<tr> <td>Min</td> <td>Mean</td> <td>Max</td> <td>Sum</td> </tr>"