From 04a9a4716e47d2d5ca92962e4fa1d78a8a59150b Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 21 Oct 2017 18:52:47 +0200 Subject: [PATCH] fixed (switched) fonts for constant and variable text output --- src/screens.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens.c b/src/screens.c index b67573e6..60d5daa4 100644 --- a/src/screens.c +++ b/src/screens.c @@ -3276,8 +3276,8 @@ void HandleInfoScreen_Program(int button) void DrawInfoScreen_Version() { - int font_header = FONT_TEXT_3; - int font_text = FONT_TEXT_2; + int font_header = FONT_TEXT_2; + int font_text = FONT_TEXT_3; int xstep = getFontWidth(font_text); int ystep = getFontHeight(font_text); int ystart1 = mSY - SY + 100; -- 2.34.1