diff --git a/electrum/gui/qml/components/wizard/Wizard.qml b/electrum/gui/qml/components/wizard/Wizard.qml index c87db3c98..0792349bb 100644 --- a/electrum/gui/qml/components/wizard/Wizard.qml +++ b/electrum/gui/qml/components/wizard/Wizard.qml @@ -29,11 +29,7 @@ Dialog { pages.takeItem(pages.currentIndex+1).destroy() } - var page = comp.createObject(pages, { - 'visible': Qt.binding(function() { - return pages.currentItem === this - }) - }) + var page = comp.createObject(pages) page.validChanged.connect(function() { pages.pagevalid = page.valid } )