- fixed and error in the Isolation Plugin when using the pad multi-isolations and area isolation simultaneously
This commit is contained in:
@@ -10,6 +10,7 @@ CHANGELOG for FlatCAM beta
|
||||
10.01.2022
|
||||
|
||||
- added a new feature in Preferences -> Gerber: a Layer Color Manager where the user can set and edit predefined colors for the Gerber objects: loading order matter
|
||||
- fixed and error in the Isolation Plugin when using the pad multi-isolations and area isolation simultaneously
|
||||
|
||||
9.01.2022
|
||||
|
||||
|
||||
@@ -2218,8 +2218,9 @@ class ToolIsolation(AppTool, Gerber):
|
||||
extra_geo = []
|
||||
for apid in self.grb_obj.tools:
|
||||
for t_geo_dict in self.grb_obj.tools[apid]['geometry']:
|
||||
if isinstance(t_geo_dict['follow'], Point):
|
||||
extra_geo.append(t_geo_dict['solid'])
|
||||
if 'follow' in t_geo_dict:
|
||||
if isinstance(t_geo_dict['follow'], Point):
|
||||
extra_geo.append(t_geo_dict['solid'])
|
||||
|
||||
for nr_pass in range(passes, extra_passes + passes):
|
||||
pad_pass_geo = []
|
||||
|
||||
BIN
assets/resources/dark_resources/set_colors64.png
Normal file
BIN
assets/resources/dark_resources/set_colors64.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 944 B |
BIN
assets/resources/set_colors64.png
Normal file
BIN
assets/resources/set_colors64.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 944 B |
Reference in New Issue
Block a user