GNOME Bugzilla – Bug 732647
When recipients ellipsized in inline composer, provide tooltip
Last modified: 2014-07-08 21:51:27 UTC
If there are too many recipients to fit on a single line in the inline composer (in compact mode), the text will ellipsize. In that case, a tooltip should be available displaying all recipients.
Created attachment 280088 [details] [review] Add tooltip to compact composer header The contacts are each on their own line, to avoid really wide tooltips. I've also prefixed each with its type (To, CC, BCC), since that's relevant information that isn't otherwise available. It's a bit prominent, though; perhaps it should be lowercase? I wasn't sure about the translation -- should the colon be part of the translatable text or not?
I dig it, I think it looks just about right. Yes, the colon should be translatable since some languages may use a different separator (if they use one at all). Two quibbles: * We use "Cc:" and "Bcc:" consistently throughout the app, so we should use the same for the tooltip. * We prefer to use to_string() for debugging and logging. Instead, use RFC822.MailboxAddress.get_full_address() (which to_string() uses today). Make these changes and commit!
Attachment 280088 [details] pushed as 7c6aa35 - Add tooltip to compact composer header