Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Instead of
QWidget[a="true"][b="true"] { }
How to:
Check if the widget contains a and b property independent of true or false? Non working EXAMPLE
QWidget[ab] { }
Check if the widget contains a and b and both are true
QWidget[ab="true"] { }
Therea's string list option in qt designer, maybe possible to check for multiple strings at once?
Check if the widget contains a and b property independent of true or false?
No way I can see of doing this.
See your first example.