wizard: add missing CommitButton to layout

This commit is contained in:
tobtoht 2023-10-14 16:37:33 +02:00
parent a855c9eee6
commit cc307b1e49
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -76,6 +76,7 @@ WalletWizard::WalletWizard(QWidget *parent)
layout << QWizard::BackButton;
layout << QWizard::NextButton;
layout << QWizard::FinishButton;
layout << QWizard::CommitButton;
this->setButtonLayout(layout);
auto *settingsButton = new QPushButton("Settings", this);