Skip to content

Commit

Permalink
more icon path stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardvmills committed Jul 3, 2017
1 parent dc040a8 commit 5817f52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CubicCurve_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ def Activated(self):
FreeCAD.ActiveDocument.recompute()

def GetResources(self):
return {'Pixmap' : path_Silk_icons + '\CubicCurve_4.svg', 'MenuText': 'CubicCurve_4', 'ToolTip': 'CubicCurve_4: \n creates a NURBS from a ControlPoly4 object (Cubic Bezier Curve)'}
return {'Pixmap' : path_Silk_icons + '/CubicCurve_4.svg', 'MenuText': 'CubicCurve_4', 'ToolTip': 'CubicCurve_4: \n creates a NURBS from a ControlPoly4 object (Cubic Bezier Curve)'}

Gui.addCommand('CubicCurve_4', CubicCurve_4())
2 changes: 1 addition & 1 deletion CubicCurve_6.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ def Activated(self):
FreeCAD.ActiveDocument.recompute()

def GetResources(self):
return {'Pixmap' : path_Silk_icons + '\CubicCurve_6.svg', 'MenuText': 'CubicCurve_6', 'ToolTip': 'CubicCurve_6'}
return {'Pixmap' : path_Silk_icons + '/CubicCurve_6.svg', 'MenuText': 'CubicCurve_6', 'ToolTip': 'CubicCurve_6'}

Gui.addCommand('CubicCurve_6', CubicCurve_6())

0 comments on commit 5817f52

Please sign in to comment.