From 2e3cc4ec0292769ac99aea44c851e82c76843fb6 Mon Sep 17 00:00:00 2001 From: cyberman54 Date: Mon, 24 Oct 2022 11:15:06 +0200 Subject: [PATCH] bugfix display layout --- src/display.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/display.cpp b/src/display.cpp index 2526e514..f50402ef 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -204,7 +204,7 @@ void dp_refresh(bool nextPage) { if (cfg.wifiscan) dp->printf("WIFI:%-5u", count.wifi_count); else - dp->printf("WIFI:off"); + dp->printf("WIFI:off "); if (cfg.blescan) dp->printf("BLTH:%-5u", count.ble_count); else @@ -213,7 +213,7 @@ void dp_refresh(bool nextPage) { if (cfg.wifiscan) dp->printf("WIFI:%-5u", count.wifi_count); else - dp->printf("WIFI:off"); + dp->printf("WIFI:off "); #elif ((!WIFICOUNTER) && (BLECOUNTER)) if (cfg.blescan) dp->printf("BLTH:%-5u", count.ble_count);