mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-26 14:18:38 -05:00
Fix indicator image of checkable QGroupBox for checked/unchecked stat… (#94)
* Fix indicator image of checkable QGroupBox for checked/unchecked state #93 * Edit version information
This commit is contained in:
parent
5cf45ed167
commit
91231c9893
@ -1,5 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
- 2.5.4
|
||||||
|
- Fix indicator image of checkable QGroupBox for check/uncheck states, #93
|
||||||
- 2.5.3
|
- 2.5.3
|
||||||
- Add future warning and pending deprecation for 3.0 version preparation #89
|
- Add future warning and pending deprecation for 3.0 version preparation #89
|
||||||
- Add ISSUE_TEMPLATE to ask for default information on issue tracker
|
- Add ISSUE_TEMPLATE to ask for default information on issue tracker
|
||||||
|
@ -48,7 +48,7 @@ import platform
|
|||||||
import os
|
import os
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
__version__ = "2.5.3"
|
__version__ = "2.5.4"
|
||||||
|
|
||||||
PYQTGRAPH_QT_LIB_VALUES = ['PyQt', 'PyQt5', 'PySide', 'PySide2']
|
PYQTGRAPH_QT_LIB_VALUES = ['PyQt', 'PyQt5', 'PySide', 'PySide2']
|
||||||
QT_API_VALUES = ['pyqt', 'pyqt5', 'pyside', 'pyside2']
|
QT_API_VALUES = ['pyqt', 'pyqt5', 'pyside', 'pyside2']
|
||||||
|
@ -47,7 +47,8 @@ QGroupBox::indicator {
|
|||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
QCheckBox::indicator:unchecked {
|
QCheckBox::indicator:unchecked,
|
||||||
|
QGroupBox::indicator:unchecked {
|
||||||
image: url(:/qss_icons/rc/checkbox_unchecked.png);
|
image: url(:/qss_icons/rc/checkbox_unchecked.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,7 +62,8 @@ QGroupBox::indicator:unchecked:pressed {
|
|||||||
image: url(:/qss_icons/rc/checkbox_unchecked_focus.png);
|
image: url(:/qss_icons/rc/checkbox_unchecked_focus.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
QCheckBox::indicator:checked {
|
QCheckBox::indicator:checked
|
||||||
|
QGroupBox::indicator:checked, {
|
||||||
image: url(:/qss_icons/rc/checkbox_checked.png);
|
image: url(:/qss_icons/rc/checkbox_checked.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user