From 2257bd0760d5b5137b6f5e077bff8a68bb4e2e0c Mon Sep 17 00:00:00 2001 From: erikkaashoek Date: Sun, 19 Jul 2020 16:25:12 +0200 Subject: [PATCH] Show pause status in status panel --- sa_core.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sa_core.c b/sa_core.c index cec2fd6..a40eb69 100644 --- a/sa_core.c +++ b/sa_core.c @@ -2377,6 +2377,14 @@ void draw_cal_status(void) #endif ili9341_drawstring(buf, x, y); + if (is_paused()) { + color = BRIGHT_COLOR_GREEN; + ili9341_set_foreground(color); + y += YSTEP + YSTEP/2 ; + ili9341_drawstring("PAUSED", x, y); + + } + // if (setting.mode == M_LOW) { // Attenuation if (setting.auto_attenuation)