Skip to content
Snippets Groups Projects
Commit ff8167b0 authored by gpawel's avatar gpawel
Browse files

minor: print the material type code in the tooltip

SVN: 23864
parent 8b30f39f
No related branches found
No related tags found
No related merge requests found
...@@ -185,7 +185,7 @@ class WellTooltipGenerator implements HeatmapPresenter.IWellTooltipGenerator ...@@ -185,7 +185,7 @@ class WellTooltipGenerator implements HeatmapPresenter.IWellTooltipGenerator
Material material = property.getMaterial(); Material material = property.getMaterial();
if (material != null) if (material != null)
{ {
return material.getCode(); return material.getCode() + " (" + material.getMaterialType().getCode() + ")";
} else } else
{ {
return property.tryGetAsString(); return property.tryGetAsString();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment