From 47734f24599edb39c9bd4ceec9196d00802bbcc2 Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Thu, 8 Jun 2023 00:26:50 +0300 Subject: [PATCH] Fix --- applications/external/unitemp/views/General_view.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/applications/external/unitemp/views/General_view.c b/applications/external/unitemp/views/General_view.c index dd045d336..22d724935 100644 --- a/applications/external/unitemp/views/General_view.c +++ b/applications/external/unitemp/views/General_view.c @@ -159,6 +159,8 @@ static void _draw_pressure(Canvas* canvas, Sensor* sensor) { canvas_draw_str(canvas, x + 52, y + 13, "kPa"); } else if(app->settings.pressure_unit == UT_PRESSURE_HPA) { canvas_draw_str(canvas, x + 67, y + 13, "hPa"); + } +} static void _draw_co2(Canvas* canvas, Sensor* sensor, Color color) { const uint8_t x = 29, y = 39;