In my program i am dinamically inserting buttons into a QDialogButtonBox, but i want them to be really big.
No matter what i try to do, they are always standard size.
can someone point me to a correct stylesheet or anything to achive that?

right now i'm inserting new buttons like that:
Qt Code:
  1. ui->buttonBox->addButton("OK", QDialogButtonBox::AcceptRole);
  2. ui->buttonBox->addButton("Yes", QDialogButtonBox::YesRole);
  3. ui->buttonBox->addButton("No", QDialogButtonBox::NoRole);
To copy to clipboard, switch view to plain text mode