From 52f937cf32a4f0ffd873493e312582d9f2cee453 Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Mon, 21 May 2018 14:31:57 +0200 Subject: [PATCH] FEM: gmsh mesh obj, fix initialization of mesh group list --- src/Mod/Fem/femobjects/_FemMeshGmsh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/femobjects/_FemMeshGmsh.py b/src/Mod/Fem/femobjects/_FemMeshGmsh.py index a20220add7..5fb4b8b6fa 100644 --- a/src/Mod/Fem/femobjects/_FemMeshGmsh.py +++ b/src/Mod/Fem/femobjects/_FemMeshGmsh.py @@ -50,7 +50,7 @@ class _FemMeshGmsh(): obj.MeshRegionList = [] obj.addProperty("App::PropertyLinkList", "MeshGroupList", "Base", "Mesh groups of the mesh") - obj.MeshRegionList = [] + obj.MeshGroupList = [] obj.addProperty("App::PropertyLink", "Part", "FEM Mesh", "Part object to mesh") obj.Part = None