From 6bf882311bba5837ea29e0437fbfe4da36a95d66 Mon Sep 17 00:00:00 2001 From: Stefan Kremser Date: Tue, 16 Oct 2018 11:54:22 +0200 Subject: [PATCH] Fixed bug with font size --- esp8266_deauther/DisplayUI.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/esp8266_deauther/DisplayUI.cpp b/esp8266_deauther/DisplayUI.cpp index 7536b72..9a73d50 100644 --- a/esp8266_deauther/DisplayUI.cpp +++ b/esp8266_deauther/DisplayUI.cpp @@ -624,6 +624,8 @@ void DisplayUI::setupButtons() { case DISPLAY_MODE::CLOCK: mode = DISPLAY_MODE::MENU; + display.setFont(DejaVu_Sans_Mono_12); + display.setTextAlignment(TEXT_ALIGN_LEFT); break; } }