- in Tool Isolation, for Polygon Selection method, added ability to select all/clear all polygons allowing thus negative selection (select all followed by deselection of the polygons you don't want isolated, e.g a ground plane)

This commit is contained in:
Marius Stanciu
2020-11-27 16:36:02 +02:00
committed by Marius
parent b0ccc15f70
commit 1f31c4156f
3 changed files with 81 additions and 2 deletions

View File

@@ -2229,13 +2229,13 @@ class PunchUI:
self.sel_all_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/select_all.png'))
self.sel_all_btn.setToolTip(
_("Select all the pads available when in manual mode.")
_("Select all available.")
)
self.clear_all_btn = FCButton(_("Deselect All"))
self.clear_all_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/deselect_all32.png'))
self.clear_all_btn.setToolTip(
_("Clear the selection of pads available when in manual mode.")
_("Clear the selection.")
)
sel_hlay.addWidget(self.sel_all_btn)
sel_hlay.addWidget(self.clear_all_btn)