diff --git a/qml/pages/NewChatPage.qml b/qml/pages/NewChatPage.qml index b9e5aba..67dc385 100644 --- a/qml/pages/NewChatPage.qml +++ b/qml/pages/NewChatPage.qml @@ -139,7 +139,9 @@ Page { ViewPlaceholder { y: Theme.paddingLarge enabled: contactsListView.count === 0 - text: qsTr("You don't have any contacts.") + text: (contactsSearchField.text.length > 0) + ? qsTr("No contacts found.") + : qsTr("You don't have any contacts.") } delegate: Item {