diff options
| author | selsta <selsta@sent.at> | 2019-12-20 06:29:10 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-12-20 06:32:42 +0100 |
| commit | 3c6a1e45d75cd6eeb08eeb167e12d982f25af4ec (patch) | |
| tree | c83fe6b02d8f10d63fbc668323c4fcd5f9fa963a /wizard/WizardController.qml | |
| parent | 500c7ec82e1d0d8b0f1fb45e2649a7795d4e5a22 (diff) | |
| download | monzero-gui-3c6a1e45d75cd6eeb08eeb167e12d982f25af4ec.tar.gz monzero-gui-3c6a1e45d75cd6eeb08eeb167e12d982f25af4ec.tar.xz monzero-gui-3c6a1e45d75cd6eeb08eeb167e12d982f25af4ec.zip | |
wizard: fix mode selection back button
Diffstat (limited to 'wizard/WizardController.qml')
| -rw-r--r-- | wizard/WizardController.qml | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/wizard/WizardController.qml b/wizard/WizardController.qml index d192bc8d..28bf3af9 100644 --- a/wizard/WizardController.qml +++ b/wizard/WizardController.qml @@ -82,7 +82,6 @@ Rectangle { property var m_wallet; property alias wizardState: wizardStateView.state - property alias wizardStatePrevious: wizardStateView.previousView property alias wizardStackView: stackView property int wizardSubViewWidth: 780 property int wizardSubViewTopMargin: persistentSettings.customDecorations ? 90 : 32 @@ -148,19 +147,9 @@ Rectangle { property WizardModeBootstrap wizardModeBootstrapView: WizardModeBootstrap {} anchors.fill: parent - signal previousClicked; - color: "transparent" state: '' - onPreviousClicked: { - if (previousView && previousView.viewName != null){ - state = previousView.viewName; - } else { - state = "wizardHome"; - } - } - onCurrentViewChanged: { if (previousView) { if (typeof previousView.onPageClosed === "function") { |
