From 7c5a9688a3dc586dc6109d8d7f09b330c33f5a42 Mon Sep 17 00:00:00 2001 From: ettaka Date: Thu, 22 Mar 2018 10:09:48 +0200 Subject: [PATCH] Fix typo in GmshTools --- src/Mod/Fem/femmesh/gmshtools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/femmesh/gmshtools.py b/src/Mod/Fem/femmesh/gmshtools.py index 1fa7bc279b..251255cc49 100644 --- a/src/Mod/Fem/femmesh/gmshtools.py +++ b/src/Mod/Fem/femmesh/gmshtools.py @@ -93,7 +93,7 @@ class GmshTools(): # Algorithm3D # known_mesh_algorithm_3D = ['Automatic', 'Delaunay', 'New Delaunay', 'Frontal', 'Frontal Delaunay', 'Frontal Hex', 'MMG3D', 'R-tree'] - algo3D = self.mesh_obj.Algorithm2D + algo3D = self.mesh_obj.Algorithm3D if algo3D == 'Automatic': self.algorithm3D = '1' elif algo3D == 'Delaunay':