Merge lp:~teemperor/pantheon-greeter/symbolic-icons-for-entries into lp:~elementary-pantheon/pantheon-greeter/trunk

Proposed by Raphael Isemann
Status: Merged
Approved by: Danielle Foré
Approved revision: 324
Merged at revision: 326
Proposed branch: lp:~teemperor/pantheon-greeter/symbolic-icons-for-entries
Merge into: lp:~elementary-pantheon/pantheon-greeter/trunk
Diff against target: 39 lines (+6/-2)
2 files modified
src/CredentialsArea.vala (+3/-1)
src/LoginBox.vala (+3/-1)
To merge this branch: bzr merge lp:~teemperor/pantheon-greeter/symbolic-icons-for-entries
Reviewer Review Type Date Requested Status
Robert Roth (community) code Approve
elementary UX Pending
Review via email: mp+239667@code.launchpad.net

Commit message

Add primary icon to indicate field type

Description of the change

Manual login is a bit confusing without any indication what kind of input we expect from the user. Not sure if it is too overloaded with both a primary and secondary icon.

To post a comment you must log in.
Revision history for this message
Robert Roth (evfool) wrote :

The code looks fine, but an UX review is required for this, maybe posting a screenshot for them would help (simply to avoid the hassle of compiling and installing and testing a new greeter)

review: Approve (code)
Revision history for this message
Raphael Isemann (teemperor) wrote :

You don't need to install the greeter anymore, just launch the compiled
binary :)
Am 06.11.2014 08:39 schrieb "Robert Roth" <email address hidden>:

> Review: Approve code
>
> The code looks fine, but an UX review is required for this, maybe posting
> a screenshot for them would help (simply to avoid the hassle of compiling
> and installing and testing a new greeter)
> --
>
> https://code.launchpad.net/~teemperor/pantheon-greeter/symbolic-icons-for-entries/+merge/239667
> You are the owner of
> lp:~teemperor/pantheon-greeter/symbolic-icons-for-entries.
>

Revision history for this message
Cody Garver (codygarver) wrote :

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/CredentialsArea.vala'
2--- src/CredentialsArea.vala 2014-10-09 15:59:21 +0000
3+++ src/CredentialsArea.vala 2014-10-26 19:36:59 +0000
4@@ -38,6 +38,8 @@
5 password = new Entry ();
6 password.margin_top = 32;
7
8+ password.set_icon_from_icon_name (Gtk.EntryIconPosition.PRIMARY,
9+ "dialog-password-symbolic");
10 password.caps_lock_warning = true;
11 //replace the letters with dots
12 password.set_visibility (false);
13@@ -90,4 +92,4 @@
14 public override void pass_focus () {
15 login_btn.grab_focus ();
16 }
17-}
18\ No newline at end of file
19+}
20
21=== modified file 'src/LoginBox.vala'
22--- src/LoginBox.vala 2014-10-21 19:29:37 +0000
23+++ src/LoginBox.vala 2014-10-26 19:36:59 +0000
24@@ -328,6 +328,8 @@
25 login_name_entry.sensitive = false;
26 });
27 login_name_entry = new Entry ();
28+ login_name_entry.set_icon_from_icon_name (Gtk.EntryIconPosition.PRIMARY,
29+ "avatar-default-symbolic");
30 login_name_entry.hexpand = true;
31 login_name_entry.margin_top = 8;
32 login_name_entry.set_icon_from_icon_name (Gtk.EntryIconPosition.SECONDARY, "go-jump-symbolic");
33@@ -440,4 +442,4 @@
34 }
35
36 }
37-}
38\ No newline at end of file
39+}

Subscribers

People subscribed via source and target branches