FEM: typo fixes

This commit is contained in:
luz.paz
2018-04-14 08:43:36 -04:00
committed by wmayer
parent 983f2472a8
commit ba9dba4b26
13 changed files with 26 additions and 26 deletions

View File

@@ -78,7 +78,7 @@ class _ViewProviderFemMeshGmsh:
gui_doc = FreeCADGui.getDocument(vobj.Object.Document)
if not gui_doc.getInEdit():
# may be go the other way around and just activate the analysis the user has doubleClicked on ?!
# not a fast one, we need to iterate over all member of all analysis to know to which analyis the object belongs too!!!
# not a fast one, we need to iterate over all member of all analysis to know to which analysis the object belongs too!!!
# first check if there is an analysis in the active document
found_an_analysis = False
for o in gui_doc.Document.Objects:
@@ -284,5 +284,5 @@ class _TaskPanelFemMeshGmsh:
# print('Mesh is not member of active analysis, means no group meshing')
self.analysis = None # no group meshing
else:
# print('No active analyis, means no group meshing')
# print('No active analysis, means no group meshing')
self.analysis = None # no group meshing

View File

@@ -478,7 +478,7 @@ class _TaskPanelFemResultShow:
self.mesh_obj.ViewObject.setNodeColorByScalars(node_numbers, zero_values)
def reject(self):
FreeCADGui.Control.closeDialog() # if the taks panell is called from Command obj is not in edit mode thus reset edit does not cleses the dialog, may be do not call but set in edit instead
FreeCADGui.Control.closeDialog() # if the tasks panel is called from Command obj is not in edit mode thus reset edit does not close the dialog, maybe don't call but set in edit instead
FreeCADGui.ActiveDocument.resetEdit()