-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.3
-
None
If you have a QButtonGroup with four QRadioButtons in it and one of those radio buttons is currently disabled and checked, when you call this code (to reset the button group to no selection):
ui->my_BG->setExclusive(false); for (QAbstractButton* button : ui->my_BG->buttons()) { button->setChecked(false); } ui->my_BG->setExclusive(true);
Then after the radio button is enabled, it will appear as checked until you mouse over it.