Fix wrong comma position #95, #96

* Fix wrong comma position, fixes #95
* Add to CHANGES and AUTHORS
This commit is contained in:
Hal 9000 2018-05-04 20:57:26 +08:00 committed by Daniel Pizetta
parent 91231c9893
commit 531eb5f816
3 changed files with 5 additions and 3 deletions

View File

@ -19,5 +19,6 @@ These people contribute to bug fixes, improvements and so on.
Please, insert your information after the last one.
- Year - Name - `<contact>` - contribution.
- 2018 - Xingyun Wu - `xingyun.wu@foxmail.com` - bug fixes.
Thank you all!

View File

@ -2,6 +2,7 @@
- 2.5.4
- Fix indicator image of checkable QGroupBox for check/uncheck states, #93
- Fix wrong comma position, #95
- 2.5.3
- Add future warning and pending deprecation for 3.0 version preparation #89
- Add ISSUE_TEMPLATE to ask for default information on issue tracker

View File

@ -62,8 +62,8 @@ QGroupBox::indicator:unchecked:pressed {
image: url(:/qss_icons/rc/checkbox_unchecked_focus.png);
}
QCheckBox::indicator:checked
QGroupBox::indicator:checked, {
QCheckBox::indicator:checked,
QGroupBox::indicator:checked {
image: url(:/qss_icons/rc/checkbox_checked.png);
}
@ -1218,4 +1218,4 @@ QDateEdit::down-arrow:on,
QDateEdit::down-arrow:hover,
QDateEdit::down-arrow:focus {
image: url(:/qss_icons/rc/down_arrow.png);
}
}