From a4a90361a383652b4b818cb14821fd7d92d9a34e Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 10 Oct 2023 10:34:34 +0100 Subject: [PATCH] qml: Use a ListView for the hw selector --- src/main.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.qml b/src/main.qml index 5426338..2764169 100644 --- a/src/main.qml +++ b/src/main.qml @@ -117,7 +117,7 @@ ApplicationWindow { Layout.fillWidth: true onClicked: { hwpopup.open() - hwswipeview.currentItem.forceActiveFocus() + hwlistview.currentItem.forceActiveFocus() } Accessible.ignored: ospopup.visible || dstpopup.visible Accessible.description: qsTr("Select this button to choose your target Raspberry Pi") @@ -193,7 +193,7 @@ ApplicationWindow { } Accessible.ignored: ospopup.visible || dstpopup.visible Accessible.description: qsTr("Select this button to change the destination storage device") - } + } } ColumnLayout { @@ -461,8 +461,8 @@ ApplicationWindow { Layout.preferredWidth: hwlist.width Layout.preferredHeight: hwlist.height - SwipeView { - id: hwswipeview + ListView { + id: hwlistview interactive: false ListView {