Merge lp:~bfiller/unity8/fix-password-predictive-text into lp:unity8

Proposed by Bill Filler
Status: Superseded
Proposed branch: lp:~bfiller/unity8/fix-password-predictive-text
Merge into: lp:unity8
Diff against target: 15 lines (+3/-2)
1 file modified
qml/Notifications/NotificationMenuItemFactory.qml (+3/-2)
To merge this branch: bzr merge lp:~bfiller/unity8/fix-password-predictive-text
Reviewer Review Type Date Requested Status
Michał Sawicz Approve
Andrea Cimitan (community) Needs Fixing
PS Jenkins bot (community) continuous-integration Needs Fixing
Review via email: mp+210676@code.launchpad.net

This proposal has been superseded by a proposal from 2014-04-10.

Commit message

Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes lp:1291575

Description of the change

Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes lp:1291575

To post a comment you must log in.
Revision history for this message
Bill Filler (bfiller) wrote :

* Are there any related MPs required for this MP to build/function as expected? Please list.
NO

 * Did you perform an exploratory manual test run of your code change and any related functionality?
YES

 * If you changed the packaging (debian), did you subscribe the ubuntu-unity team to this MP?
NA

 * If you changed the UI, has there been a design review?
NA

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Continuous integration, rev:760
http://jenkins.qa.ubuntu.com/job/unity8-ci/2476/
Executed test runs:
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-trusty/3859
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-trusty-touch/3444/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-trusty/1346
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-trusty-amd64-ci/997
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-trusty-armhf-ci/1001
        deb: http://jenkins.qa.ubuntu.com/job/unity8-trusty-armhf-ci/1001/artifact/work/output/*zip*/output.zip
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-trusty-i386-ci/997
    SUCCESS: http://jenkins.qa.ubuntu.com/job/autopilot-testrunner-otto-trusty/3384
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-trusty-amd64/3886
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-trusty-amd64/3886/artifact/work/output/*zip*/output.zip
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-trusty-armhf/3446
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-trusty-armhf/3446/artifact/work/output/*zip*/output.zip
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-runner-mako/5802/console
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/4723

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/2476/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Andrea Cimitan (cimi) wrote :

Thanks Bill, we're fine to merge this with a small TODO linking the bug, something like

// TODO using Qt.ImhNoPredictiveText here until lp #1291575 is fixed for ubuntu-ui-toolkit

review: Needs Fixing
761. By Bill Filler

merge

762. By Bill Filler

added a TODO comment

763. By Bill Filler

merge with trunk

Revision history for this message
Bill Filler (bfiller) wrote :

added the TODO comment

Revision history for this message
Michał Sawicz (saviq) wrote :

 * Did you perform an exploratory manual test run of the code change and any related functionality?
Yes.

 * Did CI run pass? If not, please explain why.
Yes.

review: Approve

Unmerged revisions

759. By Launchpad Translations on behalf of unity-team

Launchpad automatic translations update.

758. By Launchpad Translations on behalf of unity-team

Launchpad automatic translations update.

757. By Launchpad Translations on behalf of unity-team

Launchpad automatic translations update.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'qml/Notifications/NotificationMenuItemFactory.qml'
2--- qml/Notifications/NotificationMenuItemFactory.qml 2013-12-23 12:26:18 +0000
3+++ qml/Notifications/NotificationMenuItemFactory.qml 2014-04-09 13:29:17 +0000
4@@ -65,8 +65,9 @@
5
6 TextField {
7 id: textfield
8-
9- inputMethodHints: Qt.ImhNoAutoUppercase
10+
11+ // TODO using Qt.ImhNoPredictiveText here until lp #1291575 is fixed for ubuntu-ui-toolkit
12+ inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
13 anchors.left: parent.left; anchors.right: parent.right
14 echoMode: checkBox.checked ? TextInput.Normal : TextInput.Password
15 height: units.gu(5)

Subscribers

People subscribed via source and target branches