From b4e3b9703c75f9b51f5e42fad4e111aad4a34cdd Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Sat, 2 Nov 2019 14:50:24 +0100 Subject: [PATCH] Fix default Title color --- tasmota/settings.ino | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tasmota/settings.ino b/tasmota/settings.ino index b3baee256..35fd7f2fa 100644 --- a/tasmota/settings.ino +++ b/tasmota/settings.ino @@ -1116,8 +1116,9 @@ void SettingsDelta(void) } if (Settings.version < 0x07000002) { - char scolor[10]; - WebHexCode(18, GetTextIndexed(scolor, sizeof(scolor), 18, kWebColors)); + Settings.web_color2[0][0] = Settings.web_color[0][0]; + Settings.web_color2[0][1] = Settings.web_color[0][1]; + Settings.web_color2[0][2] = Settings.web_color[0][2]; } Settings.version = VERSION; SettingsSave(1);