From fa25410023bedcb986ca57a382ede0ef023a08db Mon Sep 17 00:00:00 2001
From: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
Date: Sun, 21 Aug 2022 22:20:25 +0530
Subject: [PATCH] VFO: render the step digit and the rest of digits with
 smaller size

---
 vfo.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/vfo.c b/vfo.c
index 7e3d409..50e9ea4 100644
--- a/vfo.c
+++ b/vfo.c
@@ -1054,6 +1054,7 @@ void vfo_update() {
         cairo_set_source_rgb(cr, 0.0, 1.0, 0.0);
         cairo_show_text(cr, vfo_texts[0]);
         // show the step digit in white
+	cairo_set_font_size(cr, 50);
         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);
-- 
2.45.2