Renamed PathContour to PathProfileContour for consistency.
This commit is contained in:
committed by
Yorik van Havre
parent
ffe141e86e
commit
fb56572253
@@ -23,8 +23,6 @@ SET(PathScripts_SRCS
|
||||
PathScripts/PathArray.py
|
||||
PathScripts/PathComment.py
|
||||
PathScripts/PathCompoundExtended.py
|
||||
PathScripts/PathContour.py
|
||||
PathScripts/PathContourGui.py
|
||||
PathScripts/PathCopy.py
|
||||
PathScripts/PathCustom.py
|
||||
PathScripts/PathDressup.py
|
||||
@@ -58,6 +56,8 @@ SET(PathScripts_SRCS
|
||||
PathScripts/PathPreferencesPathJob.py
|
||||
PathScripts/PathProfileBase.py
|
||||
PathScripts/PathProfileBaseGui.py
|
||||
PathScripts/PathProfileContour.py
|
||||
PathScripts/PathProfileContourGui.py
|
||||
PathScripts/PathProfileEdges.py
|
||||
PathScripts/PathProfileEdgesGui.py
|
||||
PathScripts/PathProfileFaces.py
|
||||
|
||||
@@ -45,7 +45,6 @@ class PathWorkbench (Workbench):
|
||||
from PathScripts import PathArray
|
||||
from PathScripts import PathComment
|
||||
from PathScripts import PathCompoundExtended
|
||||
from PathScripts import PathContourGui
|
||||
from PathScripts import PathCopy
|
||||
from PathScripts import PathCustom
|
||||
from PathScripts import PathDressup
|
||||
@@ -67,6 +66,7 @@ class PathWorkbench (Workbench):
|
||||
from PathScripts import PathPlane
|
||||
from PathScripts import PathPocketGui
|
||||
from PathScripts import PathPost
|
||||
from PathScripts import PathProfileContourGui
|
||||
from PathScripts import PathProfileEdgesGui
|
||||
from PathScripts import PathProfileFacesGui
|
||||
from PathScripts import PathSanity
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
|
||||
import FreeCAD
|
||||
import PathScripts.PathAreaOpGui as PathAreaOpGui
|
||||
import PathScripts.PathContour as PathContour
|
||||
import PathScripts.PathProfileBaseGui as PathProfileBaseGui
|
||||
import PathScripts.PathProfileContour as PathProfileContour
|
||||
|
||||
from PySide import QtCore
|
||||
|
||||
@@ -36,11 +36,11 @@ class TaskPanelOpPage(PathProfileBaseGui.TaskPanelOpPage):
|
||||
return 0
|
||||
|
||||
PathAreaOpGui.SetupOperation('Contour',
|
||||
PathContour.Create,
|
||||
PathProfileContour.Create,
|
||||
TaskPanelOpPage,
|
||||
'Path-Contour',
|
||||
QtCore.QT_TRANSLATE_NOOP("PathContour", "Contour"),
|
||||
QtCore.QT_TRANSLATE_NOOP("PathProfileContour", "Contour"),
|
||||
"P, C",
|
||||
QtCore.QT_TRANSLATE_NOOP("PathContour", "Creates a Contour Path for the Base Object "))
|
||||
QtCore.QT_TRANSLATE_NOOP("PathProfileContour", "Creates a Contour Path for the Base Object "))
|
||||
|
||||
FreeCAD.Console.PrintLog("Loading PathContourGui... done\n")
|
||||
FreeCAD.Console.PrintLog("Loading PathProfileContourGui... done\n")
|
||||
Reference in New Issue
Block a user