diff options
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) } |
