- fixed a bug in NCC Tool and start trying to make the App responsive while the NCC tool is run in a non-threaded way

- fixed a GUI bug with the QMenuBar recently introduced
This commit is contained in:
Marius Stanciu
2019-10-12 19:57:05 +03:00
committed by Marius
parent 3bebc16725
commit 78721590e0
8 changed files with 74 additions and 18 deletions

View File

@@ -43,8 +43,11 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
# ######### ##
self.menu = self.menuBar()
# self.menu_toggle_nb = QtWidgets.QAction(QtGui.QIcon('share/notebook32.png'), "NB")
self.menu_toggle_nb = QtWidgets.QAction("NB")
self.menu_toggle_nb = QtWidgets.QAction(QtGui.QIcon('share/notebook32.png'), _("Toggle Panel"))
self.menu_toggle_nb.setToolTip(
_("Toggle Panel")
)
# self.menu_toggle_nb = QtWidgets.QAction("NB")
self.menu_toggle_nb.setCheckable(True)
self.menu.addAction(self.menu_toggle_nb)