Commented menu in FlatCAMDraw

This commit is contained in:
jpcaram
2015-02-13 16:22:47 -05:00
parent 5ab7e04c2e
commit e5a8a53ed4
2 changed files with 21 additions and 1 deletions

View File

@@ -93,7 +93,9 @@ class FlatCAMGUI(QtGui.QMainWindow):
self.menuviewenable = self.menuview.addAction(QtGui.QIcon('share/replot16.png'), 'Enable all plots')
### Tool ###
self.menutool = self.menu.addMenu('&Tool')
#self.menutool = self.menu.addMenu('&Tool')
self.menutool = QtGui.QMenu('&Tool')
self.menutoolaction = self.menu.addMenu(self.menutool)
self.menutoolshell = self.menutool.addAction(QtGui.QIcon('share/shell16.png'), '&Command Line')
### Help ###