Added paint_connect to standard paint algorithm. Resolves issue #103.

This commit is contained in:
jpcaram
2015-02-07 18:41:29 -05:00
parent 6e8f82c487
commit 41e63c4390
3 changed files with 21 additions and 2 deletions

View File

@@ -602,6 +602,14 @@ class FlatCAMExcellon(FlatCAMObj, Excellon):
self.ui.tools_table.setSortingEnabled(True)
def set_ui(self, ui):
"""
Configures the user interface for this object.
Connects options to form fields.
:param ui: User interface object.
:type ui: ExcellonObjectUI
:return: None
"""
FlatCAMObj.set_ui(self, ui)
FlatCAMApp.App.log.debug("FlatCAMExcellon.set_ui()")