From: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
Date: Mon, 3 Jan 2022 10:13:40 +0000 (+0530)
Subject: show step digit in VFO as white instead of RED
X-Git-Url: https://git.rkrishnan.org/components/listings/sub?a=commitdiff_plain;h=8cdd3407546e80a68f1d00d695b1857d3eee290c;p=pihpsdr.git

show step digit in VFO as white instead of RED
---

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]);