From c3bc42f43457114f2fdf441c507afd0d31a94a47 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Wed, 9 Mar 2022 19:20:36 +0100 Subject: [PATCH] add clipping for flickable --- electrum/gui/qml/components/Wizard.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/electrum/gui/qml/components/Wizard.qml b/electrum/gui/qml/components/Wizard.qml index 0f2e7872e..c7c4a23a2 100644 --- a/electrum/gui/qml/components/Wizard.qml +++ b/electrum/gui/qml/components/Wizard.qml @@ -50,12 +50,16 @@ Dialog { ColumnLayout { anchors.fill: parent + spacing: 0 SwipeView { id: pages Layout.fillWidth: true + Layout.fillHeight: true interactive: false + clip:true + function prev() { currentIndex = currentIndex - 1 _setWizardData(pages.contentChildren[currentIndex].wizard_data)