Add changes and update patch for mac

This commit is contained in:
Daniel Pizetta 2018-12-13 18:19:37 -02:00
parent e9d9fb06b7
commit 8c6f7091f0
2 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
# Changelog # Changelog
- 2.6.5:
- Fix borderless widgets inside QTabWidget, #123
- Fix palette table inside CSS file, header using the last column
- 2.6.4: - 2.6.4:
- Python 2.7 compatibility, #121 - Python 2.7 compatibility, #121
- Fix MANIFEST - Fix MANIFEST

View File

@ -55,7 +55,7 @@ import copy
if sys.version_info >= (3, 4): if sys.version_info >= (3, 4):
import importlib import importlib
__version__ = "2.6.4" __version__ = "2.6.5"
QT_BINDINGS = ['PyQt4', 'PyQt5', 'PySide', 'PySide2'] QT_BINDINGS = ['PyQt4', 'PyQt5', 'PySide', 'PySide2']
@ -257,7 +257,7 @@ def load_stylesheet(pyside=True):
mac_fix = ''' mac_fix = '''
QDockWidget::title QDockWidget::title
{ {
background-color: #31363b; background-color: #32414B;
text-align: center; text-align: center;
height: 12px; height: 12px;
} }
@ -344,7 +344,7 @@ def load_stylesheet_pyqt5():
mac_fix = ''' mac_fix = '''
QDockWidget::title QDockWidget::title
{ {
background-color: #31363b; background-color: #32414B;
text-align: center; text-align: center;
height: 12px; height: 12px;
} }