QStyleSheet for "flat" property of a QGroupButton ?
-
Hello,
A QGroupButton has a "flat" property which can be setted to true or false via the designer for example. My question is : Can i set this display property via the qstylesheet of this QGroupButton ?
Thank you
@Ben35
What is a QGroupButton?
Maybe you meant QButtonGroup, but this isn't a widget. Only widgets get polished by the stylehseet style.
I guess you mean a QPushButton? In this case do this:QPushButton { qproperty-flat: true; }You can style all properties on a widget for which **DESIGNABLE ** (QtProperty) is set to true.