From 3676ad3eb8548fe644e50d1fb0d2f81606debd14 Mon Sep 17 00:00:00 2001 From: Jeroen Vermeulen - MageHost Date: Thu, 31 Dec 2020 09:06:21 +0100 Subject: [PATCH] Removed font setting in DisplayMode 1 The user can choose it using DisplayFont. --- tasmota/xdsp_14_SSD1331.ino | 1 - 1 file changed, 1 deletion(-) diff --git a/tasmota/xdsp_14_SSD1331.ino b/tasmota/xdsp_14_SSD1331.ino index f2f15e9d5..a34890b48 100644 --- a/tasmota/xdsp_14_SSD1331.ino +++ b/tasmota/xdsp_14_SSD1331.ino @@ -126,7 +126,6 @@ void SSD1331Time(void) char line[12]; renderer->clearDisplay(); - renderer->setTextSize(2); renderer->setCursor(0, 0); snprintf_P(line, sizeof(line), PSTR(" %02d" D_HOUR_MINUTE_SEPARATOR "%02d" D_MINUTE_SECOND_SEPARATOR "%02d"), RtcTime.hour, RtcTime.minute, RtcTime.second); // [ 12:34:56 ] renderer->println(line);