From 6e28fa5b2157db2f2b81c8433c72325d05ba9da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Izzo?= Date: Tue, 2 Feb 2021 11:11:36 +0100 Subject: [PATCH] Improved Squelch MACRO Menu visual hinting --- openrtx/src/graphics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrtx/src/graphics.c b/openrtx/src/graphics.c index 7a0aae75..6f4818cd 100644 --- a/openrtx/src/graphics.c +++ b/openrtx/src/graphics.c @@ -483,7 +483,7 @@ void gfx_drawSmeter(point_t start, uint16_t width, uint16_t height, float rssi, float s_level = (127.0f + rssi) / 6.0f; uint16_t rssi_width = (s_level < 0.0f) ? 0 : (s_level * (width - 1) / 11); point_t rssi_pos = { start.x, start.y + 1 }; - gfx_drawRect(rssi_pos, rssi_width, rssi_height, color, true); + gfx_drawRect(rssi_pos, rssi_width, rssi_height, white, true); // Squelch bar uint16_t squelch_height = height / 3 - 1;