Skip to content

Commit

Permalink
Merge pull request #35 from luzpaz/tooltips
Browse files Browse the repository at this point in the history
Fix tooltips + minor whitespace
  • Loading branch information
tomate44 committed Nov 30, 2020
2 parents 912ac3b + 695f26c commit cc7c6a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion freecad/Curves/GeomInfo.py
Expand Up @@ -602,6 +602,6 @@ def getTopo(self):
def GetResources(self):
return {'Pixmap': TOOL_ICON,
'MenuText': 'Geometry Info',
'ToolTip': 'displays info about the geometry of the selected topology',
'ToolTip': 'Display info about the geometry of the selected topology',
'Checkable': False}
FreeCADGui.addCommand('GeomInfo', GeomInfo())
2 changes: 1 addition & 1 deletion freecad/Curves/_utils.py
Expand Up @@ -172,7 +172,7 @@ def rootNode(shape, mode=2, deviation=0.3, angle=0.4):


def ruled_surface(e1, e2):
""" creates a ruled surface between 2 edges, with automatic orientation."""
"""creates a ruled surface between 2 edges, with automatic orientation."""
if not same_direction(e1, e2):
e = e2.copy()
e.reverse()
Expand Down
2 changes: 1 addition & 1 deletion freecad/Curves/blendSurfaceFP.py
Expand Up @@ -303,7 +303,7 @@ def Activated(self):


def GetResources(self):
return {'Pixmap' : TOOL_ICON, 'MenuText': 'Blend Surface', 'ToolTip': 'Blending Surface between to curveOnSurface objects '}
return {'Pixmap' : TOOL_ICON, 'MenuText': 'Blend Surface', 'ToolTip': 'Blend surface between two curveOnSurface objects'}

FreeCADGui.addCommand('blendSurface', blendSurfCommand())

Expand Down

0 comments on commit cc7c6a0

Please sign in to comment.