Skip to content

Commit

Permalink
FEM: material task panels, add some newlines on logs
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach committed Jan 5, 2020
1 parent 1276920 commit ed92253
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Mod/Fem/femguiobjects/_ViewProviderFemMaterial.py
Expand Up @@ -209,7 +209,7 @@ def __init__(self, obj):

# search for exact this mat_card in all known cards, choose the current material
self.card_path = self.get_material_card(self.material)
FreeCAD.Console.PrintLog("card_path: {}".format(self.card_path))
FreeCAD.Console.PrintLog("card_path: {}\n".format(self.card_path))
if not self.card_path:
# we have not found our material in self.materials dict :-(
# we're going to add a user-defined temporary material: a document material
Expand Down
Expand Up @@ -176,7 +176,7 @@ def __init__(self, obj):
# search for exact the mat_card_m and mat_card_r in all known cards
# choose the current matrix material
self.card_path_m = self.get_material_card(self.material_m)
FreeCAD.Console.PrintLog("card_path: {}".format(self.card_path_m))
FreeCAD.Console.PrintLog("card_path: {}\n".format(self.card_path_m))
if not self.card_path_m:
# we have not found our material in self.materials dict :-(
# we're going to add a user-defined temporary material: a document material
Expand Down Expand Up @@ -207,7 +207,7 @@ def __init__(self, obj):

# choose the current reinforcement material
self.card_path_r = self.get_material_card(self.material_r)
FreeCAD.Console.PrintLog("card_path: {}".format(self.card_path_r))
FreeCAD.Console.PrintLog("card_path: {}\n".format(self.card_path_r))
if not self.card_path_r:
# we have not found our material in self.materials dict :-(
# we're going to add a user-defined temporary material: a document material
Expand Down

0 comments on commit ed92253

Please sign in to comment.