ui: add attachment emoji in compact listing

This commit is contained in:
Manos Pitsidianakis 2019-05-26 21:35:08 +03:00
parent d0039740b0
commit 3318123870
No known key found for this signature in database
GPG Key ID: 73627C2F690DF710

View File

@ -115,7 +115,7 @@ impl MailboxView {
"{} ({}){}{}",
e.subject(),
len,
if e.has_attachments() { " 🔗" } else { "" },
if e.has_attachments() { " 📎" } else { "" },
if is_snoozed { " 💤" } else { "" }
)),
)
@ -127,7 +127,7 @@ impl MailboxView {
SubjectString(format!(
"{}{}{}",
e.subject(),
if e.has_attachments() { " 🔗" } else { "" },
if e.has_attachments() { " 📎" } else { "" },
if is_snoozed { " 💤" } else { "" }
)),
)