From c7bddb66309de8ff36091aba7aa38fb5eead3e61 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Sat, 6 Mar 2021 02:10:10 +0000 Subject: [PATCH] fixed the group that should be associated with a field --- XternalAppsParametricTool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/XternalAppsParametricTool.py b/XternalAppsParametricTool.py index 59234ea..c17d813 100644 --- a/XternalAppsParametricTool.py +++ b/XternalAppsParametricTool.py @@ -87,10 +87,10 @@ class XternalAppsParametricTool(): xml, types, modelInstance, inputs = self.interpretXML() for (input, modelElement, type) in inputs.values(): simpleName = re.sub(r'( |[^-a-zA-Z0-9])+', ' ', input.attrib['label']).title().replace(' ', '') - input.xpath('ancestor-or-self::group') + group = "/".join(input.xpath('ancestor-or-self::xforms:group/xforms:label/text()', namespaces=ns)) or None obj.addProperty(typeToFreeCADType(type), simpleName, - "/".join(input.xpath('ancestor-or-self::xforms:group/xforms:label/text()', namespaces=ns)) or None, + group, input.attrib['label'] + '\nA value of type ' + type) @property