From 7e34570a05e4bb5d432386e3d9744acd607210a3 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 17 Jan 2026 10:58:37 -0500 Subject: [PATCH] Improve placeholder text for WidgetsPage This shortens the text and adds an icon. --- src/roominfo/WidgetsPage.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/roominfo/WidgetsPage.qml b/src/roominfo/WidgetsPage.qml index 92f607565..713efd09b 100644 --- a/src/roominfo/WidgetsPage.qml +++ b/src/roominfo/WidgetsPage.qml @@ -24,7 +24,8 @@ Kirigami.ScrollablePage { Kirigami.PlaceholderMessage { anchors.centerIn: parent - text: i18nc("@placeholder", "This room does not use any extensions") + icon.name: "extension-symbolic" + text: i18nc("@placeholder", "No extensions") visible: extView.count === 0 }