PDA

View Full Version : QToolButton setFlat property



PstdEr
8th July 2013, 11:41
Hi,

How would i achieve setFlat property to QToolButton.
setFlat property is not available to QToolButton.

anda_skoa
8th July 2013, 13:27
If you want a non-flat, i.e. "3D", button on the toolbar you can simply add a QPushButton using addWidge()

Cheers,
_

PstdEr
8th July 2013, 15:01
Hi anda_skoa,

I found it on the net :

button->setAutoRaise(true);

is what i wanted.

Thanks for replying all my posts.