From 23ab74c34d99fc2c2a67cccd7de5d96f8db79366 Mon Sep 17 00:00:00 2001 From: Rebecca Cox Date: Mon, 26 Feb 2018 11:15:18 +0100 Subject: [PATCH] Mohr Circle: Make result "E" work --- ApplicationCode/UserInterface/RiuMohrsCirclePlot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationCode/UserInterface/RiuMohrsCirclePlot.cpp b/ApplicationCode/UserInterface/RiuMohrsCirclePlot.cpp index a3f551d2d3..fb7f411629 100644 --- a/ApplicationCode/UserInterface/RiuMohrsCirclePlot.cpp +++ b/ApplicationCode/UserInterface/RiuMohrsCirclePlot.cpp @@ -314,7 +314,7 @@ void RiuMohrsCirclePlot::queryDataAndUpdatePlot(RimGeoMechView* geoMechView, siz int frameIdx = geoMechView->currentTimeStep(); RigFemResultAddress currentAddress = geoMechView->cellResult->resultAddress(); - if (!(currentAddress.fieldName == "SE" || currentAddress.fieldName == "ST" || currentAddress.fieldName == "E")) + if (!(currentAddress.fieldName == "SE" || currentAddress.fieldName == "ST" || currentAddress.fieldName == "NE")) { clearPlot(); return;