From 3318123870557e517c057e73575f354cb7dd5ec7 Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Sun, 26 May 2019 21:35:08 +0300 Subject: [PATCH] ui: add attachment emoji in compact listing --- ui/src/components/mail/listing/compact.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/components/mail/listing/compact.rs b/ui/src/components/mail/listing/compact.rs index 07a22f4fd..d43a08d38 100644 --- a/ui/src/components/mail/listing/compact.rs +++ b/ui/src/components/mail/listing/compact.rs @@ -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 { "" } )), )