From c75d3cf9ec4638b1e3286c2fce188b8003f41464 Mon Sep 17 00:00:00 2001 From: Jaquee Date: Sat, 4 Mar 2017 00:32:53 +0100 Subject: [PATCH] fix wizard spacing and dots --- wizard/WizardCreateViewOnlyWallet.qml | 6 ++++++ wizard/WizardManageWalletUI.qml | 1 + 2 files changed, 7 insertions(+) diff --git a/wizard/WizardCreateViewOnlyWallet.qml b/wizard/WizardCreateViewOnlyWallet.qml index 0ee3f815..09b21764 100644 --- a/wizard/WizardCreateViewOnlyWallet.qml +++ b/wizard/WizardCreateViewOnlyWallet.qml @@ -57,6 +57,12 @@ ColumnLayout { return wizard.walletPathValid(walletFullPath); } + ListModel { + id: dotsModel + ListElement { dotColor: "#36B05B" } + ListElement { dotColor: "#DBDBDB" } + } + WizardManageWalletUI { id: uiItem titleText: qsTr("Create view only wallet") + translationManager.emptyString diff --git a/wizard/WizardManageWalletUI.qml b/wizard/WizardManageWalletUI.qml index 7b97b687..8c88c7bc 100644 --- a/wizard/WizardManageWalletUI.qml +++ b/wizard/WizardManageWalletUI.qml @@ -53,6 +53,7 @@ ColumnLayout { property bool recoverMode: false // Recover form seed or keys property bool recoverFromSeedMode: true + property int rowSpacing: 10 function checkFields(){ var addressOK = walletManager.addressValid(addressLine.text, wizard.settings.testnet)