aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardMain.qml
diff options
context:
space:
mode:
authormarcin <z.krzysztoff7@gmail.com>2014-08-20 21:19:21 +0200
committermarcin <z.krzysztoff7@gmail.com>2014-08-20 21:19:21 +0200
commit2a1f3814700136ba750fa9a1c4bad6dd59e6e0fa (patch)
treebf1733626ef0cd1b58de6f104a10e30558659ab8 /wizard/WizardMain.qml
parent28dd3f2e58b5efcd66cb046c1cf7647eccb12d59 (diff)
downloadmonzero-gui-2a1f3814700136ba750fa9a1c4bad6dd59e6e0fa.tar.gz
monzero-gui-2a1f3814700136ba750fa9a1c4bad6dd59e6e0fa.tar.xz
monzero-gui-2a1f3814700136ba750fa9a1c4bad6dd59e6e0fa.zip
wizard v0.2
Diffstat (limited to 'wizard/WizardMain.qml')
-rw-r--r--wizard/WizardMain.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml
index 9c523ac0..922147ca 100644
--- a/wizard/WizardMain.qml
+++ b/wizard/WizardMain.qml
@@ -35,6 +35,7 @@ Rectangle {
var pages = new Array()
pages[0] = welcomePage
pages[1] = optionsPage
+ pages[2] = createWalletPage
if(next === false) {
if(currentPage > 0) {
@@ -67,6 +68,17 @@ Rectangle {
anchors.left: prevButton.right
anchors.leftMargin: 50
anchors.rightMargin: 50
+ onCreateWalletClicked: wizard.switchPage(true)
+ }
+
+ WizardCreateWallet {
+ id: createWalletPage
+ anchors.top: parent.top
+ anchors.bottom: parent.bottom
+ anchors.right: nextButton.left
+ anchors.left: prevButton.right
+ anchors.leftMargin: 50
+ anchors.rightMargin: 50
}
Rectangle {