From 239e53a4694a9b42b7470489ddb70a40adecd3a9 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sat, 5 Oct 2024 21:19:35 +0200 Subject: [PATCH] kdeconnect-app: Add placeholder icon to device list --- app/qml/FindDevicesPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/qml/FindDevicesPage.qml b/app/qml/FindDevicesPage.qml index 1b4cc5d28..6d6b67c53 100644 --- a/app/qml/FindDevicesPage.qml +++ b/app/qml/FindDevicesPage.qml @@ -55,6 +55,7 @@ Kirigami.ScrollablePage } Kirigami.PlaceholderMessage { text: i18nd("kdeconnect-app", "No devices found") + icon.name: 'edit-none-symbolic' anchors.centerIn: parent visible: devices.count === 0 }