- NCC Plugin: fixed the Isolation operation mode

- a number of methods were updated
- modified some strings in regard to rest machining
This commit is contained in:
Marius Stanciu
2023-06-30 23:49:13 +03:00
parent 70bf613163
commit 1a637cdcb0
8 changed files with 136 additions and 194 deletions

View File

@@ -3779,16 +3779,13 @@ class IsoUI:
gp_frame.setLayout(gen_grid)
# Rest Machining
self.rest_cb = FCCheckBox('%s' % _("Rest"))
self.rest_cb = FCCheckBox('%s' % _("Rest Machining"))
self.rest_cb.setObjectName("i_rest")
self.rest_cb.setToolTip(
_("If checked, use 'rest machining'.\n"
"Basically it will process copper outside PCB features,\n"
"using the biggest tool and continue with the next tools,\n"
"from bigger to smaller, to process the copper features that\n"
"could not be processed by previous tool, until there is\n"
"nothing left to process or there are no more tools.\n\n"
"If not checked, use the standard algorithm.")
"Copper features will be processed starting with the biggest selected tool.\n"
"What cannot be processed will be passed to the next bigger tool and so on,\n"
"until either there are no longer selected tools or all the copper features are processed.")
)
gen_grid.addWidget(self.rest_cb, 0, 0)