diff --git a/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml b/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml index e055994c5..541a1c56f 100644 --- a/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml +++ b/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml @@ -339,8 +339,14 @@ Rectangle { //: 'Search in the list' : ths is a placeholder when searching something in the timeline list placeholderText: qsTr('timelineSearchPlaceholderText') - onTextChanged: timeline.model.filterText = text + onTextChanged: searchDelay.restart() font.pointSize: TimelineStyle.searchField.pointSize + Timer{ + id: searchDelay + interval: 600 + repeat: false + onTriggered: timeline.model.filterText = searchBar.text + } } }