From 625aadc5a2ec8bf3134439d9906ae3460347398a Mon Sep 17 00:00:00 2001 From: asozinov Date: Thu, 2 May 2024 12:23:23 +0100 Subject: [PATCH] bos #41748 [CEA] Issue in interpolation edition Fix problem, when after renaming Interpolation result in Analytical we received message error --- src/GeomValidators/GeomValidators_MinObjectsSelected.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/GeomValidators/GeomValidators_MinObjectsSelected.cpp b/src/GeomValidators/GeomValidators_MinObjectsSelected.cpp index 3cb8e5d62..26f1a8526 100644 --- a/src/GeomValidators/GeomValidators_MinObjectsSelected.cpp +++ b/src/GeomValidators/GeomValidators_MinObjectsSelected.cpp @@ -40,7 +40,8 @@ bool GeomValidators_MinObjectsSelected::isValid(const std::shared_ptrname().substr(0, 6) == L"Interp") + // bos#41748: + if (theFeature->getKind() == BuildPlugin_Interpolation::ID()) { AttributeStringPtr anAttr =theFeature->string(BuildPlugin_Interpolation::CREATION_METHOD_ID()); if (anAttr->isInitialized()) -- 2.39.2