Added decor icons to buttons on custom autofire pattern dialog window.
This commit is contained in:
parent
4af2ef744e
commit
a849cdcd2f
|
@ -3198,6 +3198,9 @@ void consoleWin_t::setCustomAutoFire(void)
|
|||
okButton = new QPushButton( tr("Ok") );
|
||||
cancelButton = new QPushButton( tr("Cancel") );
|
||||
|
||||
okButton->setIcon( style()->standardIcon( QStyle::SP_DialogApplyButton ) );
|
||||
cancelButton->setIcon( style()->standardIcon( QStyle::SP_DialogCancelButton ) );
|
||||
|
||||
grid->addWidget( cancelButton , 2, 0 );
|
||||
grid->addWidget( okButton , 2, 1 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue