From 5058415fa3d8cdeb0a82b914c8dc4a2c0b894e69 Mon Sep 17 00:00:00 2001 From: taco Date: Sun, 10 May 2026 18:50:02 +1000 Subject: [PATCH] u8g2 wrapper: allow larger font when size >= 2 --- src/helpers/ui/U8g2Display.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/ui/U8g2Display.h b/src/helpers/ui/U8g2Display.h index 5d736dc3f..73c589363 100644 --- a/src/helpers/ui/U8g2Display.h +++ b/src/helpers/ui/U8g2Display.h @@ -29,7 +29,7 @@ class U8g2Display : public DisplayDriver { void applyFont(int sz) { if (sz >= 2) { - _u8g2.setFont(u8g2_font_5x7_mr); // 5×7 — "large" for this display + _u8g2.setFont(u8g2_font_6x10_mr); // slightly larger font for better readability. TODO: more font sizes? } else { _u8g2.setFont(u8g2_font_5x7_mr); }