diff --git a/app/qml/FindDevicesPage.qml b/app/qml/FindDevicesPage.qml index 600c6731b..eb8a30a96 100644 --- a/app/qml/FindDevicesPage.qml +++ b/app/qml/FindDevicesPage.qml @@ -34,12 +34,6 @@ Kirigami.ScrollablePage onTriggered: root.refreshing = false } - Kirigami.PlaceholderMessage { - text: i18nd("kdeconnect-app", "No devices found") - anchors.centerIn: parent - visible: devices.count === 0 - } - ListView { id: devices section { @@ -59,6 +53,11 @@ Kirigami.ScrollablePage } } } + Kirigami.PlaceholderMessage { + text: i18nd("kdeconnect-app", "No devices found") + anchors.centerIn: parent + visible: devices.count === 0 + } model: DevicesSortProxyModel { sourceModel: DevicesModel {}