Set button width for QWizard pages

113 Views Asked by At

How can I adjust the button width (back, next buttons) of a QWizard. Is there any style sheet (qss) option I can use, or do I have to identify the buttons and set the widget width?

The stylesheet approach would be best.

1

There are 1 best solutions below

2
On BEST ANSWER

You have to get the buttons using the button() method of QWizard and set a fixed width:

your_wizard->button(QWizard::BackButton)->setFixedWidth(the_width)
your_wizard->button(QWizard::NextButton)->setFixedWidth(the_width)