How to unset a Qt attribute

3k Views Asked by At

I am setting an attribute using setAttribute( Qt::WA_OpaquePaintEvent ); Is there a way I can unset this attribute? Or is there a default attribute that I need to set to get it back to the way it was? Thanks.

1

There are 1 best solutions below

0
On BEST ANSWER

Just use the second parameter,

setAttribute(Qt::WA_OpaquePaintEvent , false)

See http://doc.qt.io/qt-5/qwidget.html#setAttribute