Add icons to placeholder messages in search pages

This commit is contained in:
Joshua Goins
2025-08-23 16:33:45 -04:00
parent f5f151681d
commit 1424b8ce42

View File

@@ -187,6 +187,7 @@ Kirigami.ScrollablePage {
Kirigami.PlaceholderMessage {
id: noSearchMessage
icon.name: "search"
anchors.centerIn: parent
visible: searchField.text.length === 0 && listView.count === 0 && customPlaceholder.text.length === 0
helpfulAction: root.noSearchHelpfulAction
@@ -194,6 +195,7 @@ Kirigami.ScrollablePage {
Kirigami.PlaceholderMessage {
id: noResultMessage
icon.name: "search"
anchors.centerIn: parent
visible: searchField.text.length > 0 && listView.count === 0 && !root.model.searching && customPlaceholder.text.length === 0
helpfulAction: root.noResultHelpfulAction