From 97aad76c2358dd7b1d081150b026a1ea99633c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Jensen?= Date: Tue, 11 Dec 2018 13:21:48 +0100 Subject: [PATCH] #3791 Contour map. Remove IJ cell ref from info text --- ApplicationCode/Commands/RicContourMapPickEventHandler.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ApplicationCode/Commands/RicContourMapPickEventHandler.cpp b/ApplicationCode/Commands/RicContourMapPickEventHandler.cpp index de6b22eedf..722f5d467f 100644 --- a/ApplicationCode/Commands/RicContourMapPickEventHandler.cpp +++ b/ApplicationCode/Commands/RicContourMapPickEventHandler.cpp @@ -69,7 +69,6 @@ bool RicContourMapPickEventHandler::handlePickEvent(const Ric3DPickEvent& eventO QString curveText; curveText += QString("%1\n").arg(view->createAutoName()); curveText += QString("Picked Point X, Y: %1, %2\n").arg(pickedPoint.x(), 5, 'f', 0).arg(pickedPoint.y(), 5, 'f', 0); - curveText += QString("Picked Cell I, J: %1, %2\n").arg(pickedCell.x()).arg(pickedCell.y()); curveText += QString("Result Type: %1\n").arg(contourMap->resultDescriptionText()); curveText += QString("Aggregated Value: %1\n").arg(valueAtPoint);