mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-18 02:07:41 +00:00
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:
commit
9afefa75a0
2 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue