Merge pull request 'Wizard: improve title' (#228) from tobtoht/feather:welcome_to_feather into master

Reviewed-on: https://git.wownero.com/feather/feather/pulls/228
This commit is contained in:
tobtoht 2020-12-16 15:31:56 +00:00
commit 9afefa75a0
2 changed files with 1 additions and 2 deletions

View File

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

View File

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