feat: add message when host doesn't show any apps

This commit is contained in:
Jorys Paulin 2025-02-25 12:30:38 +01:00 committed by Cameron Gutman
parent 7a769172a1
commit cc0b574bb1

View File

@ -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 { NavigableMessageDialog {
id: quitAppDialog id: quitAppDialog
property string appName : "" property string appName : ""