From e30d88e0130bcf676c0c87b2ede598c2f9d1f254 Mon Sep 17 00:00:00 2001 From: smcgann99 <52132596+smcgann99@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:05:57 +0000 Subject: [PATCH] Update antiburn.be (#22386) Currently anitburn doesn't cover other objects if they are on lv.layer_top, moving it to lv.layer_sys fixes this issue. --- tasmota/berry/modules/antiburn/antiburn.be | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/berry/modules/antiburn/antiburn.be b/tasmota/berry/modules/antiburn/antiburn.be index e695df9ca..2f0a0c3a3 100644 --- a/tasmota/berry/modules/antiburn/antiburn.be +++ b/tasmota/berry/modules/antiburn/antiburn.be @@ -21,7 +21,7 @@ antiburn.init = def (m) lv.start() if self.antiburn == nil - var antiburn = lv.obj(lv.layer_top()) + var antiburn = lv.obj(lv.layer_sys()) antiburn.set_style_radius(0, 0) antiburn.set_style_border_width(0, 0) antiburn.set_style_bg_opa(255, 0)