mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-04-07 21:37:06 +00:00
Stop showing message numbers in the UI. It is debug really.
This commit is contained in:
parent
901b67396e
commit
40738651d0
@ -5,6 +5,7 @@
|
||||
/////////////////////////////////////////////////////////////////
|
||||
|
||||
// TODO:
|
||||
// - Fix terrible scrollback algorithm!!
|
||||
// - Email composition (write, reply and forward)
|
||||
|
||||
#include <stdio.h>
|
||||
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user