Added decor icons to buttons on custom autofire pattern dialog window.

This commit is contained in:
mjbudd77 2021-06-01 20:57:29 -04:00
parent 4af2ef744e
commit a849cdcd2f
1 changed files with 3 additions and 0 deletions

View File

@ -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 );