From 5a034278f43700479095c624067d06eeebdbd712 Mon Sep 17 00:00:00 2001 From: CommanderRedYT Date: Sat, 8 Jan 2022 16:59:21 +0100 Subject: [PATCH] Added fix for labels --- main/displays/statusdisplay.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main/displays/statusdisplay.cpp b/main/displays/statusdisplay.cpp index 4467b2c..7886131 100644 --- a/main/displays/statusdisplay.cpp +++ b/main/displays/statusdisplay.cpp @@ -119,6 +119,11 @@ void StatusDisplay::redraw() { blink_fill_with_black = false; tft.fillRect(0, 0, tft.width(), 6, TFT_BLACK); + tft.setTextFont(2); + tft.drawString("gas", 0, 0); + m_labelRawGas.start(); + m_labelGas.start(); + m_progressBarGas.start(); } } #endif