ubuntu-touch-coreapps-reviewers team mailing list archive
-
ubuntu-touch-coreapps-reviewers team
-
Mailing list archive
-
Message #05380
[Merge] lp:~popey/ubuntu-filemanager-app/suppress-predictive-text into lp:ubuntu-filemanager-app
Alan Pope has proposed merging lp:~popey/ubuntu-filemanager-app/suppress-predictive-text into lp:ubuntu-filemanager-app.
Commit message:
Found a few more places in the UI where the OSK uses predictive text. Disabled these.
Requested reviews:
Ubuntu File Manager Developers (ubuntu-filemanager-dev)
For more details, see:
https://code.launchpad.net/~popey/ubuntu-filemanager-app/suppress-predictive-text/+merge/274995
--
Your team Ubuntu File Manager Developers is requested to review the proposed merge of lp:~popey/ubuntu-filemanager-app/suppress-predictive-text into lp:ubuntu-filemanager-app.
=== modified file 'src/app/qml/ui/GoToDialog.qml'
--- src/app/qml/ui/GoToDialog.qml 2014-11-30 10:26:19 +0000
+++ src/app/qml/ui/GoToDialog.qml 2015-10-20 10:05:20 +0000
@@ -36,7 +36,7 @@
id: locationField
objectName: "inputField"
- inputMethodHints: Qt.ImhNoAutoUppercase
+ inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
property bool valid: pathExists(text)
=== modified file 'src/app/qml/ui/PlacesPage.qml'
--- src/app/qml/ui/PlacesPage.qml 2015-01-06 19:56:17 +0000
+++ src/app/qml/ui/PlacesPage.qml 2015-10-20 10:05:20 +0000
@@ -54,7 +54,7 @@
margins: units.gu(1)
}
- inputMethodHints: Qt.ImhNoAutoUppercase
+ inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
property bool valid: pathExists(text)
=== modified file 'src/app/qml/ui/ViewPopover.qml'
--- src/app/qml/ui/ViewPopover.qml 2014-09-20 10:49:51 +0000
+++ src/app/qml/ui/ViewPopover.qml 2015-10-20 10:05:20 +0000
@@ -140,7 +140,7 @@
margins: units.gu(1)
}
- inputMethodHints: Qt.ImhNoAutoUppercase
+ inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
text: pageModel.nameFilters
References