aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardModeSelection.qml
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2019-07-24 05:07:54 +0200
committerselsta <selsta@sent.at>2019-07-24 05:07:54 +0200
commit8abf8f844fed1fdc396effe3c029752e64fa4747 (patch)
tree92cdf713573de32fec05d5aad13592d61787dd5c /wizard/WizardModeSelection.qml
parent0461a2870106928cc40db2d6f39514898c68a292 (diff)
downloadmonzero-gui-8abf8f844fed1fdc396effe3c029752e64fa4747.tar.gz
monzero-gui-8abf8f844fed1fdc396effe3c029752e64fa4747.tar.xz
monzero-gui-8abf8f844fed1fdc396effe3c029752e64fa4747.zip
wizard: bug fixes
- property binding loop - wrong transition - html in plaintext
Diffstat (limited to 'wizard/WizardModeSelection.qml')
-rw-r--r--wizard/WizardModeSelection.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/wizard/WizardModeSelection.qml b/wizard/WizardModeSelection.qml
index 8d1a93fb..1eb3320f 100644
--- a/wizard/WizardModeSelection.qml
+++ b/wizard/WizardModeSelection.qml
@@ -38,9 +38,11 @@ Rectangle {
id: wizardModeSelection1
color: "transparent"
+ property alias pageHeight: pageRoot.height
property string viewName: "wizardModeSelection1"
ColumnLayout {
+ id: pageRoot
Layout.alignment: Qt.AlignHCenter;
width: parent.width - 100
Layout.fillWidth: true
@@ -77,6 +79,7 @@ Rectangle {
onMenuClicked: {
if(appWindow.persistentSettings.nettype == 0){
appWindow.changeWalletMode(0);
+ wizardController.wizardStackView.backTransition = false;
wizardController.wizardState = 'wizardModeRemoteNodeWarning';
}
}
@@ -106,6 +109,7 @@ Rectangle {
onMenuClicked: {
if(appWindow.persistentSettings.nettype == 0){
appWindow.changeWalletMode(1);
+ wizardController.wizardStackView.backTransition = false;
wizardController.wizardState = 'wizardModeBootstrap';
}
}