diff --git a/src/qml/RelationCombobox.qml b/src/qml/RelationCombobox.qml index 679d05fa20..e74dc4380d 100644 --- a/src/qml/RelationCombobox.qml +++ b/src/qml/RelationCombobox.qml @@ -99,7 +99,7 @@ Item { height: childrenRect.height onSearchTermChanged: { - featureListModel.setSearchTerm(searchTerm); + featureListModel.searchTerm = searchTerm; } onReturnPressed: { diff --git a/src/qml/imports/Theme/QfSearchBar.qml b/src/qml/imports/Theme/QfSearchBar.qml index 75f7eb2306..803ec4665b 100644 --- a/src/qml/imports/Theme/QfSearchBar.qml +++ b/src/qml/imports/Theme/QfSearchBar.qml @@ -55,6 +55,7 @@ Item { anchors.rightMargin: 4 height: 40 selectByMouse: true + inputMethodHints: Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase | Qt.ImhSensitiveData placeholderText: (!searchField.activeFocus && text === "" && displayText === "") ? searchBar.placeHolderText : "" background: Item { }