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

Proposed by Michał Sawicz
Status: Merged
Approved by: Michał Sawicz
Approved revision: 764
Merged at revision: 827
Proposed branch: lp:~unity-team/unity8/fix-password-predictive-text
Merge into: lp:unity8
Diff against target: 13 lines (+2/-1)
1 file modified
qml/Notifications/NotificationMenuItemFactory.qml (+2/-1)
To merge this branch: bzr merge lp:~unity-team/unity8/fix-password-predictive-text
Reviewer Review Type Date Requested Status
Michał Sawicz Approve
PS Jenkins bot continuous-integration Pending
Andrea Cimitan Pending
Review via email: mp+215106@code.launchpad.net

This proposal supersedes a proposal from 2014-03-12.

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 : Posted in a previous version of this proposal

* 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 : Posted in a previous version of this proposal

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 : Posted in a previous version of this proposal

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
Revision history for this message
Bill Filler (bfiller) wrote : Posted in a previous version of this proposal

added the TODO comment

Revision history for this message
Michał Sawicz (saviq) wrote : Posted in a previous version of this proposal

 * 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
Revision history for this message
Michał Sawicz (saviq) wrote :

Approving as per the prerequisite. This only fixes whitespace.

review: Approve

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-10 08:50:31 +0000
4@@ -66,7 +66,8 @@
5 TextField {
6 id: textfield
7
8- inputMethodHints: Qt.ImhNoAutoUppercase
9+ // TODO using Qt.ImhNoPredictiveText here until lp #1291575 is fixed for ubuntu-ui-toolkit
10+ inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
11 anchors.left: parent.left; anchors.right: parent.right
12 echoMode: checkBox.checked ? TextInput.Normal : TextInput.Password
13 height: units.gu(5)

Subscribers

People subscribed via source and target branches