From 060e30e612fabf7c79e54c8fdf16da1bc1375422 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 25 Jul 2024 19:33:41 -0400 Subject: [PATCH] Suggest what to do on the empty welcome screen A simple change, adds a sentence to the "Welcome to NeoChat" message when it first starts up and you have nothing selected. --- src/qml/RoomPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qml/RoomPage.qml b/src/qml/RoomPage.qml index f9069b662..91d2980bf 100644 --- a/src/qml/RoomPage.qml +++ b/src/qml/RoomPage.qml @@ -155,6 +155,7 @@ Kirigami.Page { sourceComponent: Kirigami.PlaceholderMessage { icon.name: "org.kde.neochat" text: i18n("Welcome to NeoChat") + explanation: i18n("Select or join a room to get started") } }