We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there,
When I try to use the lastest version of this style sheet, the Qt gives me a warning of "Could not parse application stylesheet".
I find it's relvant with a commit 7days ago(91231c9), the author write the comma to a wrong position in file "style.qss" line 65 and 66.
It should be: QCheckBox::indicator:checked, QGroupBox::indicator:checked { image: url(:/qss_icons/rc/checkbox_checked.png); }
QCheckBox::indicator:checked,
QGroupBox::indicator:checked { image: url(:/qss_icons/rc/checkbox_checked.png); }
But write as: QCheckBox::indicator:checked QGroupBox::indicator:checked, { image: url(:/qss_icons/rc/checkbox_checked.png); }
QCheckBox::indicator:checked
QGroupBox::indicator:checked, { image: url(:/qss_icons/rc/checkbox_checked.png); }
I have been fixed this in my fork Repository, and I'll post a pull request to this.
Thanks!
The text was updated successfully, but these errors were encountered:
Fix wrong comma position. (ColinDuquesnoy#95)
fd20b7f
531eb5f
dpizetta
powermanwxy
No branches or pull requests
Hi there,
When I try to use the lastest version of this style sheet, the Qt gives me a warning of "Could not parse application stylesheet".
I find it's relvant with a commit 7days ago(91231c9), the author write the comma to a wrong position in file "style.qss" line 65 and 66.
It should be:
QCheckBox::indicator:checked,
QGroupBox::indicator:checked { image: url(:/qss_icons/rc/checkbox_checked.png); }
But write as:
QCheckBox::indicator:checked
QGroupBox::indicator:checked, { image: url(:/qss_icons/rc/checkbox_checked.png); }
I have been fixed this in my fork Repository, and I'll post a pull request to this.
Thanks!
The text was updated successfully, but these errors were encountered: