diff --git a/src/Mod/Fem/femsolver/elmer/equations/equation.py b/src/Mod/Fem/femsolver/elmer/equations/equation.py index f6a7a029ff..585667a0a7 100644 --- a/src/Mod/Fem/femsolver/elmer/equations/equation.py +++ b/src/Mod/Fem/femsolver/elmer/equations/equation.py @@ -45,7 +45,11 @@ class Proxy(equationbase.BaseProxy): "App::PropertyInteger", "Priority", "Base", - "" + ( + "Number of your choice\n" + "The equation with lowest number\n" + "will be solved first." + ) ) diff --git a/src/Mod/Fem/femsolver/elmer/equations/linear.py b/src/Mod/Fem/femsolver/elmer/equations/linear.py index c4ec7eb72e..6bdefca76d 100644 --- a/src/Mod/Fem/femsolver/elmer/equations/linear.py +++ b/src/Mod/Fem/femsolver/elmer/equations/linear.py @@ -89,7 +89,7 @@ class Proxy(equation.Proxy): "App::PropertyInteger", "BiCGstablDegree", "Linear System", - "" + "Polynom degree for iterative method 'BiCGstabl'" ) obj.BiCGstablDegree = 2 obj.addProperty( @@ -104,7 +104,7 @@ class Proxy(equation.Proxy): "App::PropertyFloat", "LinearTolerance", "Linear System", - "" + "Linear preconditioning method" ) # we must set an expression because we don't have a UI, the user has to # view and edit the tolerance via the property editor and this does not