- Milling Tool - fixed the ever-growing list of preproessors

This commit is contained in:
Marius Stanciu
2020-12-09 20:05:04 +02:00
committed by Marius
parent 367af9475d
commit 3389d50e53
2 changed files with 3 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ CHANGELOG for FlatCAM beta
- fixed the on_delete() method in the App class; sometime it will delete all files that have similar names
- made sure that on creation of new objects the adding of the names to the auto-complete list is done properly
- Drilling Tool - remade the 'Beginner/Advanced' Mode
- Milling Tool - fixed the ever-growing list of preproessors
8.12.2020

View File

@@ -334,6 +334,8 @@ class ToolMilling(AppTool, Excellon):
"tools_mill_area_overz": self.ui.over_z_entry,
})
# reset the Geometry preprocessor combo
self.ui.pp_geo_name_cb.clear()
# populate Geometry (milling) preprocessor combobox list
for name in list(self.app.preprocessors.keys()):
self.ui.pp_geo_name_cb.addItem(name)