diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-01-30 10:37:14 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-02-27 22:07:16 +0100 |
| commit | ebcab010bbf1eeaed0a0c734460a038bdbe374b8 (patch) | |
| tree | 1f30232e5a4ec0f97a37eec2eecb8e89c08f774d /wizard/WizardCreateViewOnlyWallet.qml | |
| parent | e826f7c1ecdcdc1e588e67b07278f7433cd867eb (diff) | |
| download | monzero-gui-ebcab010bbf1eeaed0a0c734460a038bdbe374b8.tar.gz monzero-gui-ebcab010bbf1eeaed0a0c734460a038bdbe374b8.tar.xz monzero-gui-ebcab010bbf1eeaed0a0c734460a038bdbe374b8.zip | |
Wizard: mobile redesign
Diffstat (limited to 'wizard/WizardCreateViewOnlyWallet.qml')
| -rw-r--r-- | wizard/WizardCreateViewOnlyWallet.qml | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/wizard/WizardCreateViewOnlyWallet.qml b/wizard/WizardCreateViewOnlyWallet.qml index c95ced8e..0379098f 100644 --- a/wizard/WizardCreateViewOnlyWallet.qml +++ b/wizard/WizardCreateViewOnlyWallet.qml @@ -28,10 +28,11 @@ import moneroComponents.WalletManager 1.0 import QtQuick 2.2 +import QtQuick.Layouts 1.1 import "../components" import "utils.js" as Utils -Item { +ColumnLayout { id: passwordPage opacity: 0 @@ -55,29 +56,6 @@ Item { return wizard.walletPathValid(walletFullPath); } - Row { - id: dotsRow - anchors.top: parent.top - anchors.right: parent.right - anchors.topMargin: 85 - spacing: 6 - - ListModel { - id: dotsModel - ListElement { dotColor: "#FFE00A" } - ListElement { dotColor: "#DBDBDB" } - } - - Repeater { - model: dotsModel - delegate: Rectangle { - width: 12; height: 12 - radius: 6 - color: dotColor - } - } - } - WizardManageWalletUI { id: uiItem titleText: qsTr("Create view only wallet") + translationManager.emptyString @@ -88,7 +66,6 @@ Item { recoverMode: false } - Component.onCompleted: { //parent.wizardRestarted.connect(onWizardRestarted) } |
