diff --git a/src/wizard/menu.cpp b/src/wizard/menu.cpp index fc16cba..89a5556 100644 --- a/src/wizard/menu.cpp +++ b/src/wizard/menu.cpp @@ -16,7 +16,6 @@ MenuPage::MenuPage(AppContext *ctx, QWidget *parent) : ui(new Ui::MenuPage), m_ctx(ctx) { ui->setupUi(this); - this->setTitle("Welcome to feather"); this->setButtonText(QWizard::FinishButton, "Open recent wallet"); ui->radioCreate->setChecked(true); } diff --git a/src/wizard/walletwizard.cpp b/src/wizard/walletwizard.cpp index 82bbf61..641b9bc 100644 --- a/src/wizard/walletwizard.cpp +++ b/src/wizard/walletwizard.cpp @@ -20,7 +20,7 @@ WalletWizard::WalletWizard(AppContext *ctx, WalletWizard::Page startPage, QWidget *parent) : QWizard(parent), m_ctx(ctx) { - this->setWindowTitle("Welcome to feather"); + this->setWindowTitle("Welcome to Feather Wallet"); this->setWindowIcon(QIcon(":/assets/images/appicons/64x64.png")); auto openWalletPage = new OpenWalletPage(m_ctx, this); auto createWallet = new CreateWalletPage(m_ctx, this);