display.cpp: removed inverse display for send queue length
This commit is contained in:
parent
2f51a65b8f
commit
2940561c26
@ -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(" ");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user