Fix visibility check

This commit is contained in:
Tobias Fella
2024-11-24 19:53:50 +01:00
parent 7c7b073a47
commit e42c002fbd

View File

@@ -178,7 +178,7 @@ Kirigami.ScrollablePage {
Kirigami.PlaceholderMessage {
id: noSearchMessage
anchors.centerIn: parent
visible: searchField.text.length === 0 && listView.count === 0 && !root.showCustomPlaceholder && customPlaceholder.text.length === 0
visible: searchField.text.length === 0 && listView.count === 0 && customPlaceholder.text.length === 0
}
Kirigami.PlaceholderMessage {