Skip to content

Commit

Permalink
Draft: Renamed DWire to Polyline
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Jun 5, 2019
1 parent 5ee99ca commit 39e7482
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Mod/Draft/DraftTools.py
Expand Up @@ -735,9 +735,9 @@ def __init__(self):

def GetResources(self):
return {'Pixmap' : 'Draft_Wire',
'Accel' : "W, I",
'MenuText': QtCore.QT_TRANSLATE_NOOP("Draft_Wire", "DWire"),
'ToolTip': QtCore.QT_TRANSLATE_NOOP("Draft_Wire", "Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain")}
'Accel' : "P, L",
'MenuText': QtCore.QT_TRANSLATE_NOOP("Draft_Wire", "Polyline"),
'ToolTip': QtCore.QT_TRANSLATE_NOOP("Draft_Wire", "Creates a multiple-points line (polyline). CTRL to snap, SHIFT to constrain")}

def Activated(self):

Expand Down Expand Up @@ -765,9 +765,9 @@ def Activated(self):
'FreeCAD.ActiveDocument.recompute()'])])
return

Line.Activated(self,name=translate("draft","DWire"))

Line.Activated(self,name=translate("draft","Polyline"))


class BSpline(Line):
"a FreeCAD command for creating a B-spline"

Expand Down

0 comments on commit 39e7482

Please sign in to comment.