From 40738651d046cf325b6f4849d25db546120de69d Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Sat, 27 Jun 2020 20:02:09 -0400 Subject: [PATCH] Stop showing message numbers in the UI. It is debug really. --- apps/email.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/email.c b/apps/email.c index ab4efab..57f0690 100644 --- a/apps/email.c +++ b/apps/email.c @@ -5,6 +5,7 @@ ///////////////////////////////////////////////////////////////// // TODO: +// - Fix terrible scrollback algorithm!! // - Email composition (write, reply and forward) #include @@ -201,12 +202,13 @@ void print_one_email_summary(struct emailhdrs *h, uint8_t inverse) { putchar('D'); // Deleted break; } - printf("%02d|", h->emailnum); + //printf("%02d|", h->emailnum); + putchar('|'); printfield(h->date, 0, 16); putchar('|'); printfield(h->from, 0, 20); putchar('|'); - printfield(h->subject, 0, 37); + printfield(h->subject, 0, 39); //putchar('\r'); putchar(0xe); // NORMAL }