From 981cc69922a7c3ad431736f6b9113021dcafa2c0 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 30 Jan 2025 12:56:58 +0000 Subject: [PATCH] DownloadListPage: Improve the placeholder text, add icon This adds an icon to the placeholder text here. Oh yeah, and add in a bit of translator context for good measure. --- src/qml/DownloadListPage.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qml/DownloadListPage.qml b/src/qml/DownloadListPage.qml index 7b82ded2..9b54a284 100644 --- a/src/qml/DownloadListPage.qml +++ b/src/qml/DownloadListPage.qml @@ -52,7 +52,8 @@ Kirigami.ScrollablePage { width: Kirigami.Units.gridUnit * 20 anchors.centerIn: parent - text: i18n("No downloads") + icon.name: "download" + text: i18nc("@info:placeholder", "No downloads") } model: DownloadModel