From cc0b574bb189d7d3b01d803a018bd8ba60bdfee3 Mon Sep 17 00:00:00 2001 From: Jorys Paulin Date: Tue, 25 Feb 2025 12:30:38 +0100 Subject: [PATCH] feat: add message when host doesn't show any apps --- app/gui/AppView.qml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index 56c4efd2..3bcdf6d5 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -339,6 +339,19 @@ CenteredGridView { } } + Row { + anchors.centerIn: parent + spacing: 5 + visible: appGrid.count === 0 + + Label { + text: qsTr("This computer doesn't seem to have any applications or some applications are hidden") + font.pointSize: 20 + verticalAlignment: Text.AlignVCenter + wrapMode: Text.Wrap + } + } + NavigableMessageDialog { id: quitAppDialog property string appName : ""