display.cpp: removed inverse display for send queue length

This commit is contained in:
Klaus K Wilting 2018-12-22 18:18:28 +01:00
parent 2f51a65b8f
commit 2940561c26

View File

@ -182,9 +182,7 @@ void refreshtheDisplay() {
if (msgWaiting) { if (msgWaiting) {
sprintf(buff, "%2d", msgWaiting); sprintf(buff, "%2d", msgWaiting);
u8x8.setCursor(14, 7); u8x8.setCursor(14, 7);
u8x8.setInverseFont(1);
u8x8.printf("%-2s", msgWaiting == SEND_QUEUE_SIZE ? "<>" : buff); u8x8.printf("%-2s", msgWaiting == SEND_QUEUE_SIZE ? "<>" : buff);
u8x8.setInverseFont(0);
} else } else
u8x8.printf(" "); u8x8.printf(" ");