Add NoPredictiveText hint to search field
authorLuciano Montanaro <mikelima@cirulla.net>
Mon, 30 Dec 2013 11:21:12 +0000 (12:21 +0100)
committerLuciano Montanaro <mikelima@cirulla.net>
Mon, 30 Dec 2013 11:21:12 +0000 (12:21 +0100)
This fixes the problem with the clear button not working in the search
field of the StationList.

application/resources/sailfish/qml/pages/StationListPage.qml

index 490b3fb..e1c5b8c 100644 (file)
@@ -39,7 +39,7 @@ Page {
             SearchField {
                 id: searchField
                 placeholderText: qsTr("Search station...")
-                inputMethodHints: Qt.ImhNoAutoUppercase
+                inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
                 onTextChanged: stationListPage.searchPattern = searchField.text
                 width: stationListPage.width
                 EnterKey.onClicked: searchField.focus = false