Browse Source

- some minor UI changes

Marius Stanciu 6 năm trước cách đây
mục cha
commit
74460f9dcd
2 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 1 0
      README.md
  2. 1 1
      flatcamGUI/FlatCAMGUI.py

+ 1 - 0
README.md

@@ -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
 

+ 1 - 1
flatcamGUI/FlatCAMGUI.py

@@ -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)