Display a tool tip with the user's email when you hover an account link

Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce
2009-01-14 13:11:56 -08:00
parent 01c3417599
commit 83a48b731d

View File

@@ -39,6 +39,7 @@ public class AccountDashboardLink extends DirectScreenLink {
public AccountDashboardLink(final String text, final AccountInfo ai) {
super(text, Link.toAccountDashboard(ai));
addStyleName("gerrit-AccountName");
setTitle(FormatUtil.nameEmail(ai));
account = ai;
}