Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.6.2
-
None
Description
When setFocusPolicy(Qt::NoFocus); is set on a QRadioButton, the widget still gets the click focus.
As a workaround, you can do:
setFocusPolicy(Qt::NoFocus);
and
setAttribute(Qt::WA_TransparentForMouseEvents);