From cc307b1e494eab6e6f2e9b5b1bf58bacd3e2e266 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Sat, 14 Oct 2023 16:37:33 +0200 Subject: [PATCH] wizard: add missing CommitButton to layout --- src/wizard/WalletWizard.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wizard/WalletWizard.cpp b/src/wizard/WalletWizard.cpp index a95b9e14..acb50a34 100644 --- a/src/wizard/WalletWizard.cpp +++ b/src/wizard/WalletWizard.cpp @@ -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); -- 2.52.0