From a491ff80bc4bd2df95bc78f024a812235bb02859 Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Mon, 12 Feb 2024 21:39:41 +0100 Subject: [PATCH] Move to original font with Classic S-Meter --- ui/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/main.c b/ui/main.c index e840c05..d51bbd0 100644 --- a/ui/main.c +++ b/ui/main.c @@ -372,7 +372,10 @@ void DisplayRSSIBar(const bool now) else { sprintf(str, "+%02d", overS9dBm); } - UI_PrintStringSmallBold(str, LCD_WIDTH + 38, 0, line - 1); + if(gSetting_set_met) + UI_PrintStringSmallNormal(str, LCD_WIDTH + 38, 0, line - 1); + else + UI_PrintStringSmallBold(str, LCD_WIDTH + 38, 0, line - 1); #else if(overS9Bars == 0) { sprintf(str, "% 4d S%d", -rssi_dBm, s_level);