- moved the init of activity view in the MainGUI file from the APP.__init__()

This commit is contained in:
Marius Stanciu
2020-06-13 20:12:34 +03:00
committed by Marius
parent c44f395625
commit 39210fcfbf
3 changed files with 8 additions and 3 deletions

View File

@@ -1598,6 +1598,10 @@ class MainGUI(QtWidgets.QMainWindow):
self.units_label.setMargin(2)
self.infobar.addWidget(self.units_label)
# this used to be done in the APP.__init__()
self.activity_view = FlatCAMActivityView(app=self.app)
self.infobar.addWidget(self.activity_view)
# disabled
# self.progress_bar = QtWidgets.QProgressBar()
# self.progress_bar.setMinimum(0)