From fc79943a736cd9ce7150ea46dc8320f85a2deedb Mon Sep 17 00:00:00 2001
From: c vw <dl1ycf@darc.de>
Date: Fri, 31 Jan 2020 10:43:40 +0100
Subject: [PATCH] VFO top left corner text correction from John

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

diff --git a/vfo.c b/vfo.c
index adf3b15..f83cf67 100644
--- a/vfo.c
+++ b/vfo.c
@@ -850,6 +850,9 @@ void vfo_update() {
             sprintf(temp_text,"%s %s",mode_string[vfo[id].mode],band_filter->title);
             break;
         }
+        cairo_set_font_size(cr, 12);
+        cairo_set_source_rgb(cr, 1.0, 1.0, 0.0);
+        cairo_move_to(cr, 5, 15);
         cairo_show_text(cr, temp_text);
 
 	// In what follows, we want to display the VFO frequency
-- 
2.45.2