diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-08-06 17:26:48 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-11-03 16:09:23 +0100 |
| commit | a3088b1eeb54f4b36cc365771fbbd5586918df2c (patch) | |
| tree | bd005aa310a8657f845116b489b34e5490039851 /wizard/WizardMain.qml | |
| parent | bbcb780cfa821b2176c86e3ffd5118778b5588da (diff) | |
| download | monzero-gui-a3088b1eeb54f4b36cc365771fbbd5586918df2c.tar.gz monzero-gui-a3088b1eeb54f4b36cc365771fbbd5586918df2c.tar.xz monzero-gui-a3088b1eeb54f4b36cc365771fbbd5586918df2c.zip | |
Wizard: add daemon settings page
Diffstat (limited to 'wizard/WizardMain.qml')
| -rw-r--r-- | wizard/WizardMain.qml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml index ade1de60..b81dee4f 100644 --- a/wizard/WizardMain.qml +++ b/wizard/WizardMain.qml @@ -51,8 +51,8 @@ ColumnLayout { // "create_wallet" : [welcomePage, optionsPage, createWalletPage, passwordPage, donationPage, finishPage ], // "recovery_wallet" : [welcomePage, optionsPage, recoveryWalletPage, passwordPage, donationPage, finishPage ], // disable donation page - "create_wallet" : [welcomePage, optionsPage, createWalletPage, passwordPage, finishPage ], - "recovery_wallet" : [welcomePage, optionsPage, recoveryWalletPage, passwordPage, finishPage ], + "create_wallet" : [welcomePage, optionsPage, createWalletPage, passwordPage, daemonSettingsPage, finishPage ], + "recovery_wallet" : [welcomePage, optionsPage, recoveryWalletPage, passwordPage, daemonSettingsPage, finishPage ], "create_view_only_wallet" : [ createViewOnlyWalletPage, passwordPage ], } @@ -291,6 +291,12 @@ ColumnLayout { Layout.topMargin: wizardTopMargin } + WizardDaemonSettings { + id: daemonSettingsPage + Layout.bottomMargin: wizardBottomMargin + Layout.topMargin: wizardTopMargin + } + WizardDonation { id: donationPage Layout.bottomMargin: wizardBottomMargin |
