- some minor UI changes

This commit is contained in:
Marius Stanciu 2019-08-06 04:25:56 +03:00
parent 2d448b68ad
commit 74460f9dcd
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ CAD program, and create G-Code for Isolation routing.
- fixed bug that crashed the app after creating a new geometry, if a new object is loaded and the new geometry is deleted and then trying to select the just loaded new object
- made some GUI elements in Edit -> Preferences to have a minimum width as opposed to the previous fixed one
- fixed issue in the isolation function, if the isolation can't be done there will be generated no Geometry object
- some minor UI changes
5.08.2019

View File

@ -837,7 +837,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
self.pref_tab_area = FCTab()
self.pref_tab_area.setTabsClosable(False)
self.pref_tab_area_tabBar = self.pref_tab_area.tabBar()
self.pref_tab_area_tabBar.setStyleSheet("QTabBar::tab{width:90px;}")
self.pref_tab_area_tabBar.setStyleSheet("QTabBar::tab{min-width:90px;}")
self.pref_tab_area_tabBar.setExpanding(True)
self.pref_tab_layout.addWidget(self.pref_tab_area)