From 70fe1a334bc31145e12ede56fef39f823a2c3d6f Mon Sep 17 00:00:00 2001 From: fvanroie Date: Sat, 22 Feb 2020 16:01:10 +0100 Subject: [PATCH] Fix boot loop --- src/hasp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hasp.cpp b/src/hasp.cpp index c67d7118..a978576e 100644 --- a/src/hasp.cpp +++ b/src/hasp.cpp @@ -1326,7 +1326,7 @@ void haspNewObject(const JsonObject & config) } if(styleid < sizeof labelStyles / sizeof *labelStyles) { debugPrintln(String(F("HASP: Styleid set to ")) + styleid); - lv_label_set_style(obj, LV_LABEL_STYLE_MAIN, &labelStyles[styleid]); + // lv_label_set_style(obj, LV_LABEL_STYLE_MAIN, &labelStyles[styleid]); } /* click area padding */ uint8_t padh = config[F("padh")].as();