- minor fix in App Tools that were updated to have UI in a separate class

This commit is contained in:
Marius Stanciu 2020-06-16 15:14:34 +03:00
parent 6ec57391f4
commit 651b3137e9
5 changed files with 7 additions and 2 deletions

View File

@ -16,6 +16,7 @@ CHANGELOG for FlatCAM beta
- fixed some problems (typos, missing data) generated by latest changes
- more typos fixed in Excellon parser, slots processing
- fixed Extract Drills Tool to work with the new Excellon data format
- minor fix in App Tools that were updated to have UI in a separate class
15.06.2020

View File

@ -53,6 +53,7 @@ class ToolDrilling(AppTool, Excellon):
# ######################### Tool GUI ##########################################
# #############################################################################
self.ui = DrillingUI(layout=self.layout, app=self.app)
self.toolName = self.ui.toolName
# #############################################################################
# ########################## VARIABLES ########################################

View File

@ -47,6 +47,7 @@ class ToolIsolation(AppTool, Gerber):
# ######################### Tool GUI ##########################################
# #############################################################################
self.ui = IsoUI(layout=self.layout, app=self.app)
self.toolName = self.ui.toolName
# #############################################################################
# ###################### Setup CONTEXT MENU ###################################

View File

@ -50,7 +50,8 @@ class NonCopperClear(AppTool, Gerber):
# ######################### Tool GUI ##########################################
# #############################################################################
self.ui = NccUI(layout=self.layout, app=self.app)
self.toolName = self.ui.toolName
# #############################################################################
# ###################### Setup CONTEXT MENU ###################################
# #############################################################################

View File

@ -50,7 +50,8 @@ class ToolPaint(AppTool, Gerber):
# ######################### Tool GUI ##########################################
# #############################################################################
self.ui = PaintUI(layout=self.layout, app=self.app)
self.toolName = self.ui.toolName
# #############################################################################
# ########################## VARIABLES ########################################
# #############################################################################