- made the Tool Tab closable

This commit is contained in:
Marius Stanciu
2020-11-16 02:20:19 +02:00
committed by Marius
parent 9923188bbc
commit 4816d3fc76
2 changed files with 5 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ CHANGELOG for FlatCAM beta
- modified the behavior of the Tool Tab in the Notebook widget. Now the app start with the Tool Tab off. If an App Tool is launched then the Tool Tab is added and populated. If the same App Tool is launched again and the focus is in its Tool Tab then the Tool Tab is removed but if the focus is elsewhere then the focus is set again on the Tool Tab.
- fixed the App Tools buttons in the Tools section of the Properties Tab for Excellon, Gerber and Geometry objects
- made the Tool Tab closable
15.11.2020

View File

@@ -892,8 +892,8 @@ class MainGUI(QtWidgets.QMainWindow):
self.setCentralWidget(self.splitter)
# self.notebook = QtWidgets.QTabWidget()
self.notebook = FCDetachableTab(protect=True, parent=self)
self.notebook.setTabsClosable(False)
self.notebook = FCDetachableTab(protect=True, protect_by_name=[_("Project"), _("Properties")], parent=self)
# self.notebook.setTabsClosable(False)
self.notebook.useOldIndex(True)
self.splitter.addWidget(self.notebook)
@@ -1350,6 +1350,7 @@ class MainGUI(QtWidgets.QMainWindow):
self.project_tab_layout = QtWidgets.QVBoxLayout(self.project_frame)
self.project_tab_layout.setContentsMargins(2, 2, 2, 2)
self.notebook.addTab(self.project_tab, _("Project"))
self.notebook.protectTab(0)
self.project_frame.setDisabled(False)
# ########################################################################
@@ -1365,6 +1366,7 @@ class MainGUI(QtWidgets.QMainWindow):
# self.properties_scroll_area.setSizeAdjustPolicy(QtWidgets.QAbstractScrollArea.AdjustToContents)
self.properties_tab_layout.addWidget(self.properties_scroll_area)
self.notebook.addTab(self.properties_tab, _("Properties"))
self.notebook.protectTab(1)
# ########################################################################
# ########################## TOOL Tab # ##################################