diff --git a/smsapp/qml/ConversationList.qml b/smsapp/qml/ConversationList.qml index 7dbe5a3a1..3c1dffd9c 100644 --- a/smsapp/qml/ConversationList.qml +++ b/smsapp/qml/ConversationList.qml @@ -171,11 +171,6 @@ Kirigami.ScrollablePage onTextChanged: { if (filter.text != "") { view.model.setConversationsFilterRole(ConversationListModel.AddressesRole) - if (conversationListModel.isAddressValid(filter.text)) { - newButton.enabled = true - } else { - newButton.enabled = false - } } else { view.model.setConversationsFilterRole(ConversationListModel.ConversationIdRole) } @@ -218,8 +213,6 @@ Kirigami.ScrollablePage conversationListModel.createConversationForAddress(filter.text) view.currentIndex = 0 } - - filter.enabled = true } Shortcut {