Merge lp:~om26er/unity8/show_password_on_label_tap into lp:unity8

Proposed by Omer Akram
Status: Merged
Approved by: Michael Zanetti
Approved revision: 1402
Merged at revision: 1437
Proposed branch: lp:~om26er/unity8/show_password_on_label_tap
Merge into: lp:unity8
Diff against target: 15 lines (+5/-0)
1 file modified
qml/Notifications/NotificationMenuItemFactory.qml (+5/-0)
To merge this branch: bzr merge lp:~om26er/unity8/show_password_on_label_tap
Reviewer Review Type Date Requested Status
Michael Zanetti (community) Approve
PS Jenkins bot (community) continuous-integration Approve
Review via email: mp+240767@code.launchpad.net

Commit message

show password when tapped on the 'Show password' label, not just the checkbox.

Description of the change

show password when tapped on the 'Show password' label, not just the checkbox.

To post a comment you must log in.
1398. By Omer Akram

fix as Saviq suggested

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
1399. By Omer Akram

need to have a MouseArea to click at

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
1400. By Omer Akram

merge trunk

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Michael Zanetti (mzanetti) wrote :

Checklist please

review: Needs Fixing
Revision history for this message
Michael Zanetti (mzanetti) wrote :

See this wiki page on how to propose branches to unity8: https://wiki.ubuntu.com/Process/Merges/Checklists/Unity8

This looks like it could need a test. Can you add one please? I guess it should be fine to add it into tst_Notifications.qml

review: Needs Fixing
Revision history for this message
Michael Zanetti (mzanetti) wrote :

Hm.. I just realized this is a snap decision notification with private-menu-hits which we don't really have a nice way to mock yet. I'm ok to go without tests here. Please add the checklist and we're good.

1401. By Omer Akram

merge trunk

1402. By Omer Akram

fix tags

Revision history for this message
Omer Akram (om26er) 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.

Did you make sure that your branch does not contain spurious tags?
    Yes, ran Saviq's script.

If you changed the packaging (debian), did you subscribe the ubuntu-unity team to this MP?
    No change.

If you changed the UI, has there been a design review?
    Not needed.

Revision history for this message
Omer Akram (om26er) wrote :

@Saviq, I ran your script over this branch.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Michael Zanetti (mzanetti) wrote :

Branch has a lot of spurious tags.

review: Needs Fixing
Revision history for this message
Michael Zanetti (mzanetti) 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

 * Did you make sure that the branch does not contain spurious tags?

yes

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 2014-11-05 15:23:43 +0000
3+++ qml/Notifications/NotificationMenuItemFactory.qml 2014-11-13 20:31:44 +0000
4@@ -127,6 +127,11 @@
5 anchors.verticalCenter: checkBox.verticalCenter
6 text: i18n.tr("Show password")
7 color: notification.sdFontColor
8+
9+ MouseArea {
10+ anchors.fill: parent
11+ onClicked: { checkBox.checked = !checkBox.checked }
12+ }
13 }
14 }
15 }

Subscribers

People subscribed via source and target branches