From 8cdd3407546e80a68f1d00d695b1857d3eee290c Mon Sep 17 00:00:00 2001 From: Ramakrishnan Muthukrishnan Date: Mon, 3 Jan 2022 15:43:40 +0530 Subject: [PATCH] show step digit in VFO as white instead of RED --- vfo.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vfo.c b/vfo.c index 2c80ece..f430e1c 100644 --- a/vfo.c +++ b/vfo.c @@ -1035,7 +1035,8 @@ void vfo_update() { // try to show VFO text according to step value cairo_set_source_rgb(cr, 0.0, 1.0, 0.0); cairo_show_text(cr, vfo_texts[0]); - cairo_set_source_rgb(cr, 1.0, 0.0, 0.0); + // show the step digit in white + cairo_set_source_rgb(cr, 1.0, 1.0, 1.0); cairo_show_text(cr, vfo_texts[1]); cairo_set_source_rgb(cr, 0.0, 1.0, 0.0); cairo_show_text(cr, vfo_texts[2]); -- 2.45.2