From af46cae5c74f729102880717ce080b681eb352ef Mon Sep 17 00:00:00 2001 From: Juan Pablo Caram Date: Sun, 1 Nov 2015 18:11:17 -0500 Subject: [PATCH] Default value for depth/cut now positive. Added note to tooltip. --- FlatCAMObj.py | 2 +- ObjectUI.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FlatCAMObj.py b/FlatCAMObj.py index f339a399..e19a0f9b 100644 --- a/FlatCAMObj.py +++ b/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 diff --git a/ObjectUI.py b/ObjectUI.py index f7ce3d97..f54f1c3b 100644 --- a/ObjectUI.py +++ b/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()