ui: add attachment emoji in compact listing

memfd
Manos Pitsidianakis 5 years ago
parent d0039740b0
commit 3318123870
No known key found for this signature in database
GPG Key ID: 73627C2F690DF710

@ -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 { "" }
)),
)

Loading…
Cancel
Save