- Copper Fill Tool: added possibility to select between a bounding box rectangular or convex hull when the reference is the geometry of the source Gerber object

- Copper Fill Tool: cleanup on not regular tool exit
This commit is contained in:
Marius Stanciu
2019-10-25 23:08:44 +03:00
committed by Marius
parent 2bde43ca3f
commit 4a3a0a5669
6 changed files with 118 additions and 22 deletions

View File

@@ -335,9 +335,9 @@ class ToolPaint(FlatCAMTool, Gerber):
"It can be Gerber, Excellon or Geometry.")
)
self.box_combo_type = QtWidgets.QComboBox()
self.box_combo_type.addItem(_("Gerber Reference Box Object"))
self.box_combo_type.addItem(_("Excellon Reference Box Object"))
self.box_combo_type.addItem(_("Geometry Reference Box Object"))
self.box_combo_type.addItem(_("Reference Gerber"))
self.box_combo_type.addItem(_("Reference Excellon"))
self.box_combo_type.addItem(_("Reference Geometry"))
form1.addRow(self.box_combo_type_label, self.box_combo_type)
self.box_combo_label = QtWidgets.QLabel('%s:' % _("Ref. Object"))