ui: remove useless padding from ThreadView items

embed
Manos Pitsidianakis 2019-05-10 22:02:23 +03:00
parent bf35894a18
commit 5d6c4ee2c8
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
1 changed files with 2 additions and 4 deletions

View File

@ -187,8 +187,7 @@ impl ThreadView {
let subject = envelope.subject();
highlight_reply_subjects.push(Some(subject.grapheme_width()));
format!(
" {}{} - {} {}",
" ".repeat(e.index.0 * 4),
" {} - {} {}",
envelope.date_as_str(),
envelope.field_from_to_string(),
envelope.subject(),
@ -196,8 +195,7 @@ impl ThreadView {
} else {
highlight_reply_subjects.push(None);
format!(
" {}{} - {}",
" ".repeat(e.index.0 * 4),
" {} - {}",
envelope.date_as_str(),
envelope.field_from_to_string(),
)