Default value for depth/cut now positive. Added note to tooltip.

This commit is contained in:
Juan Pablo Caram
2015-11-01 18:11:17 -05:00
parent 24f5ee0d0d
commit af46cae5c7
2 changed files with 2 additions and 2 deletions

View File

@@ -1028,7 +1028,7 @@ class FlatCAMGeometry(FlatCAMObj, Geometry):
"paintmargin": 0.01, "paintmargin": 0.01,
"paintmethod": "standard", "paintmethod": "standard",
"multidepth": False, "multidepth": False,
"depthperpass": -0.002 "depthperpass": 0.002
}) })
# Attributes to be included in serialization # Attributes to be included in serialization

View File

@@ -299,7 +299,7 @@ class GeometryObjectUI(ObjectUI):
maxdepthlabel = QtGui.QLabel('Depth/pass:') maxdepthlabel = QtGui.QLabel('Depth/pass:')
maxdepthlabel.setToolTip( maxdepthlabel.setToolTip(
"Depth of each pass." "Depth of each pass (positive)."
) )
grid1.addWidget(maxdepthlabel, 6, 0) grid1.addWidget(maxdepthlabel, 6, 0)
self.maxdepth_entry = LengthEntry() self.maxdepth_entry = LengthEntry()