- fixed a bug in SolderPaste Tool that did not allow to view the GCode

This commit is contained in:
Marius Stanciu
2019-11-03 13:19:48 +02:00
committed by Marius
parent d2d5371148
commit eb091f3990
5 changed files with 159 additions and 125 deletions

View File

@@ -325,8 +325,7 @@ class ToolCalculator(FlatCAMTool):
tip_diameter = float(self.tipDia_entry.get_value())
half_tip_angle = float(self.tipAngle_entry.get_value())
half_tip_angle /= 2
half_tip_angle = float(self.tipAngle_entry.get_value()) / 2.0
cut_depth = float(self.cutDepth_entry.get_value())
cut_depth = -cut_depth if cut_depth < 0 else cut_depth