- SolderPaste Tool - fixed not recognizing the default tools

This commit is contained in:
Marius Stanciu
2020-12-12 06:13:07 +02:00
committed by Marius
parent e72787315d
commit e2ea230492
3 changed files with 28 additions and 20 deletions

View File

@@ -318,7 +318,7 @@ class ToolDrilling(AppTool, Excellon):
pp_list = []
for name in self.app.preprocessors.keys():
# the HPGL preprocessor is only for Geometry not for Excellon job therefore don't add it
if name == 'hpgl':
if name in ['hpgl', 'Paste_1', 'Check_points']:
continue
pp_list.append(name)
pp_list.sort()