mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
Wizard: rename cancel button to close
This commit is contained in:
parent
e0f7473ed4
commit
9803f66cc2
4 changed files with 1 additions and 7 deletions
|
@ -38,10 +38,5 @@ int MenuPage::nextId() const {
|
|||
}
|
||||
|
||||
bool MenuPage::validatePage() {
|
||||
// Check if file exists
|
||||
// Check if wallet has password
|
||||
// Check if wallet can be decrypted with entered password
|
||||
|
||||
// TODO: Check if password is correct, otherwise show error message
|
||||
return true;
|
||||
}
|
|
@ -12,7 +12,6 @@ NetworkPage::NetworkPage(AppContext *ctx, QWidget *parent) :
|
|||
m_ctx(ctx) {
|
||||
ui->setupUi(this);
|
||||
this->setTitle("Welcome to Feather!");
|
||||
this->setButtonText(QWizard::FinishButton, "walletKeysFilesModel");
|
||||
|
||||
ui->customFrame->hide();
|
||||
|
||||
|
|
|
@ -18,7 +18,6 @@ RestorePage::RestorePage(AppContext *ctx, QWidget *parent) :
|
|||
m_ctx(ctx) {
|
||||
ui->setupUi(this);
|
||||
this->setTitle("Restore wallet");
|
||||
this->setButtonText(QWizard::FinishButton, "walletKeysFilesModel");
|
||||
ui->restoreFrame->hide();
|
||||
ui->label_errorString->hide();
|
||||
|
||||
|
|
|
@ -41,6 +41,7 @@ WalletWizard::WalletWizard(AppContext *ctx, WalletWizard::Page startPage, QWidge
|
|||
else
|
||||
setStartId(Page_Menu);
|
||||
|
||||
setButtonText(QWizard::CancelButton, "Close");
|
||||
setPixmap(QWizard::WatermarkPixmap, QPixmap(":/assets/images/banners/3.png"));
|
||||
setWizardStyle(WizardStyle::ModernStyle);
|
||||
setOption(QWizard::NoBackButtonOnStartPage);
|
||||
|
|
Loading…
Reference in a new issue