Przeglądaj źródła

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

Juan Pablo Caram 10 lat temu
rodzic
commit
af46cae5c7
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1 1
      FlatCAMObj.py
  2. 1 1
      ObjectUI.py

+ 1 - 1
FlatCAMObj.py

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

+ 1 - 1
ObjectUI.py

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