diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-12-23 09:30:21 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-12-23 09:30:21 -0500 |
| commit | 43f378b7d282fe595f681c3b1a9f27c97255f70e (patch) | |
| tree | 37a28f0e2e9837dd68fdbf25344aa23375431220 /wizard/WizardController.qml | |
| parent | b73551d6ab9e6e8141dd2f720aad879851756a6e (diff) | |
| parent | 3c6a1e45d75cd6eeb08eeb167e12d982f25af4ec (diff) | |
| download | monzero-gui-43f378b7d282fe595f681c3b1a9f27c97255f70e.tar.gz monzero-gui-43f378b7d282fe595f681c3b1a9f27c97255f70e.tar.xz monzero-gui-43f378b7d282fe595f681c3b1a9f27c97255f70e.zip | |
Merge pull request #2644
3c6a1e4 wizard: fix mode selection back button (selsta)
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 78cc4357..d3157c3e 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 @@ -146,19 +145,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") { |
