From 550d35fb057609742cc0fcee2f8b1099b0f7f5dc Mon Sep 17 00:00:00 2001 From: sliptonic Date: Thu, 24 Aug 2017 08:24:31 -0500 Subject: [PATCH] Path: cleanup on operation copy --- src/Mod/Path/PathCommands.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Mod/Path/PathCommands.py b/src/Mod/Path/PathCommands.py index 68cab460c5..394535fab1 100644 --- a/src/Mod/Path/PathCommands.py +++ b/src/Mod/Path/PathCommands.py @@ -82,12 +82,12 @@ if FreeCAD.GuiUp: FreeCADGui.addCommand('Path_SelectLoop', _CommandSelectLoop()) -class _CloneOperation: - "the Path Clone Operation command definition" +class _CopyOperation: + "the Path Copy Operation command definition" def GetResources(self): return {'Pixmap': 'Path-OpCopy', - 'MenuText': QtCore.QT_TRANSLATE_NOOP("Path_CloneOperation", "Duplicate the operation in the job"), - 'ToolTip': QtCore.QT_TRANSLATE_NOOP("Path_CloneOperation", "Create a copy of the operation in the same job"), + 'MenuText': QtCore.QT_TRANSLATE_NOOP("Path_OperationCopy", "Copy the operation in the job"), + 'ToolTip': QtCore.QT_TRANSLATE_NOOP("Path_OperationCopy", "Copy the operation in the job"), 'CmdType': "ForEdit"} def IsActive(self): @@ -106,7 +106,7 @@ class _CloneOperation: if FreeCAD.GuiUp: - FreeCADGui.addCommand('Path_CloneOperation', _CloneOperation()) + FreeCADGui.addCommand('Path_OperationCopy', _CopyOperation()) def findShape(shape, subname=None, subtype=None):