Draft: DraftTools, place the CubicBezCurve tool before the BezCurve, as the cubic curve is more used.

This commit is contained in:
vocx-fc
2019-09-14 13:49:38 -05:00
committed by Yorik van Havre
parent 0c18f5e256
commit 24b07312c6

View File

@@ -5652,7 +5652,7 @@ FreeCADGui.addCommand('Draft_Polygon',Polygon())
FreeCADGui.addCommand('Draft_BSpline',BSpline())
class CommandBezierGroup:
def GetCommands(self):
return tuple(['Draft_BezCurve','Draft_CubicBezCurve'])
return tuple(['Draft_CubicBezCurve', 'Draft_BezCurve'])
def GetResources(self):
return { 'MenuText': QtCore.QT_TRANSLATE_NOOP("Draft_BezierTools",'Bezier tools'),
'ToolTip': QtCore.QT_TRANSLATE_NOOP("Draft_BezierTools",'Bezier tools')