diff --git a/ApplicationCode/ProjectDataModel/Rim2dIntersectionView.cpp b/ApplicationCode/ProjectDataModel/Rim2dIntersectionView.cpp index 8bb1ed001d..b00b9626d2 100644 --- a/ApplicationCode/ProjectDataModel/Rim2dIntersectionView.cpp +++ b/ApplicationCode/ProjectDataModel/Rim2dIntersectionView.cpp @@ -345,8 +345,9 @@ void Rim2dIntersectionView::updateLegends() QString overlayInfoText; - overlayInfoText += "Case: " + ownerCase()->caseUserDescription() + "
"; + overlayInfoText += "--" + ownerCase()->caseUserDescription() + "--"; + overlayInfoText += "

"; overlayInfoText += "Intersection: " + m_intersection->name() + "
"; if (m_intersection->simulationWell()) @@ -364,7 +365,7 @@ void Rim2dIntersectionView::updateLegends() m_intersection->firstAncestorOrThisOfType(eclView); if (eclView) { - overlayInfoText += "Cell Result: " + eclView->cellResult()->resultVariableUiShortName() + "
"; + overlayInfoText += "Cell Result: " + eclView->cellResult()->resultVariableUiShortName() + "
"; m_legendConfig()->setUiValuesFromLegendConfig(eclView->cellResult()->legendConfig()); m_ternaryLegendConfig()->setUiValuesFromLegendConfig(eclView->cellResult()->ternaryLegendConfig()); @@ -386,7 +387,7 @@ void Rim2dIntersectionView::updateLegends() m_intersection->firstAncestorOrThisOfType(geoView); if (geoView) { - overlayInfoText += "Cell Result: " + geoView->cellResult()->legendConfig()->resultVariableName() + "
"; + overlayInfoText += "Cell Result: " + geoView->cellResult()->legendConfig()->resultVariableName() + "
"; m_legendConfig()->setUiValuesFromLegendConfig(geoView->cellResult()->legendConfig()); @@ -399,6 +400,7 @@ void Rim2dIntersectionView::updateLegends() m_viewer->addColorLegendToBottomLeftCorner(legend); } + overlayInfoText += "

"; m_viewer->setInfoText(overlayInfoText); m_viewer->showInfoText(true); }