From f2718a05fff8a62e0c51b4bf28816eb4968aa5f3 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Mon, 16 Oct 2023 11:47:24 +0100 Subject: [PATCH] qml: Increase device selector icon size to 64x64 --- src/main.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.qml b/src/main.qml index d1c96ba..a42428b 100644 --- a/src/main.qml +++ b/src/main.qml @@ -729,10 +729,10 @@ ApplicationWindow { Image { source: icon == "icons/ic_build_48px.svg" ? "icons/cat_misc_utility_images.png": icon - Layout.preferredHeight: 40 - Layout.preferredWidth: 40 - sourceSize.width: 40 - sourceSize.height: 40 + Layout.preferredHeight: 64 + Layout.preferredWidth: 64 + sourceSize.width: 64 + sourceSize.height: 64 fillMode: Image.PreserveAspectFit verticalAlignment: Image.AlignVCenter Layout.alignment: Qt.AlignVCenter