From 4dbd2c36daa475c278178d17c0b8893ecb0dd1a3 Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Fri, 6 Aug 2021 07:29:02 +0200 Subject: [PATCH] FEM: do not use the red error print if it is not a error --- src/Mod/Fem/femmesh/meshtools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/femmesh/meshtools.py b/src/Mod/Fem/femmesh/meshtools.py index ac4a7aca22..3f04ec7c0c 100644 --- a/src/Mod/Fem/femmesh/meshtools.py +++ b/src/Mod/Fem/femmesh/meshtools.py @@ -2225,7 +2225,7 @@ def get_femmesh_eletype( if not femmesh: FreeCAD.Console.PrintError("Error: No femmesh.\n") if not femelement_table: - FreeCAD.Console.PrintError("The femelement_table need to be calculated.\n") + FreeCAD.Console.PrintWarning("The femelement_table need to be calculated.\n") femelement_table = get_femelement_table(femmesh) # in some cases lowest key in femelement_table is not [1] for elem in sorted(femelement_table):