diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-03-04 00:32:53 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-03-04 00:32:53 +0100 |
| commit | c75d3cf9ec4638b1e3286c2fce188b8003f41464 (patch) | |
| tree | 95acea581c5dfe50d2a17dc5701f48d64ea1a59a | |
| parent | 2e3350c060a810fa48e5396ee22d3c35851d020a (diff) | |
| download | monzero-gui-c75d3cf9ec4638b1e3286c2fce188b8003f41464.tar.gz monzero-gui-c75d3cf9ec4638b1e3286c2fce188b8003f41464.tar.xz monzero-gui-c75d3cf9ec4638b1e3286c2fce188b8003f41464.zip | |
fix wizard spacing and dots
| -rw-r--r-- | wizard/WizardCreateViewOnlyWallet.qml | 6 | ||||
| -rw-r--r-- | wizard/WizardManageWalletUI.qml | 1 |
2 files changed, 7 insertions, 0 deletions
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) |
