- some refactoring in signal connections in App.__init__()

- fixed issue with conenctiong twice the signals for the File Toolbar on the first execution of the program
This commit is contained in:
Marius Stanciu
2020-11-09 16:40:30 +02:00
parent f9e7892249
commit 4d4735fff2
5 changed files with 207 additions and 152 deletions

View File

@@ -226,6 +226,11 @@ class ExclusionAreas(QtCore.QObject):
e_shape_modified = QtCore.pyqtSignal()
def __init__(self, app):
"""
A class that create interdiction areas that need to be avoided by GCode
:param app: The main application
"""
super().__init__()
self.app = app