Stop showing message numbers in the UI. It is debug really.

This commit is contained in:
Bobbi Webber-Manners
2020-06-27 20:02:09 -04:00
parent 901b67396e
commit 40738651d0

View File

@@ -5,6 +5,7 @@
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
// TODO: // TODO:
// - Fix terrible scrollback algorithm!!
// - Email composition (write, reply and forward) // - Email composition (write, reply and forward)
#include <stdio.h> #include <stdio.h>
@@ -201,12 +202,13 @@ void print_one_email_summary(struct emailhdrs *h, uint8_t inverse) {
putchar('D'); // Deleted putchar('D'); // Deleted
break; break;
} }
printf("%02d|", h->emailnum); //printf("%02d|", h->emailnum);
putchar('|');
printfield(h->date, 0, 16); printfield(h->date, 0, 16);
putchar('|'); putchar('|');
printfield(h->from, 0, 20); printfield(h->from, 0, 20);
putchar('|'); putchar('|');
printfield(h->subject, 0, 37); printfield(h->subject, 0, 39);
//putchar('\r'); //putchar('\r');
putchar(0xe); // NORMAL putchar(0xe); // NORMAL
} }