Hi,

is there a way to disable a QRadioButton without disabling its text ? If you do the following:

Qt Code:
  1. QRadioButton button = new QRadioButton(tr("Custom"));
  2. button->setEnabled(false);
To copy to clipboard, switch view to plain text mode 

This will disable both the button and "Custom".

Actually it doesn't bother me if the text is also disabled. But in this case I would like to modify the text's color from grey to black.

Any suggestions ?