From 531eb5f81651036a9d21c1d5efef457019e545f8 Mon Sep 17 00:00:00 2001 From: Hal 9000 Date: Fri, 4 May 2018 20:57:26 +0800 Subject: [PATCH] Fix wrong comma position #95, #96 * Fix wrong comma position, fixes #95 * Add to CHANGES and AUTHORS --- AUTHORS.md | 1 + CHANGES.md | 1 + qdarkstyle/style.qss | 6 +++--- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index 2b7deb04f..0d6188f38 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -19,5 +19,6 @@ These people contribute to bug fixes, improvements and so on. Please, insert your information after the last one. - Year - Name - `` - contribution. +- 2018 - Xingyun Wu - `xingyun.wu@foxmail.com` - bug fixes. Thank you all! \ No newline at end of file diff --git a/CHANGES.md b/CHANGES.md index cafe104ed..dffbdc651 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/qdarkstyle/style.qss b/qdarkstyle/style.qss index df7b79acd..e0ee1009b 100644 --- a/qdarkstyle/style.qss +++ b/qdarkstyle/style.qss @@ -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); -} \ No newline at end of file +}