diff --git a/firmware/components/display-classic.yaml b/firmware/components/display-classic.yaml index 36e9afd..9c88272 100644 --- a/firmware/components/display-classic.yaml +++ b/firmware/components/display-classic.yaml @@ -103,6 +103,13 @@ lvgl: outline_width: 0 scrollable: false bg_opa: transp + # LVGL's base obj is clickable by default (obj->flags = LV_OBJ_FLAG_CLICKABLE in + # lv_obj_create) and lv_obj_hit_test() requires that flag before checking geometry. + # Being a full-screen, topmost sibling of mode_toggle, this container was silently + # swallowing every tap over the toggle bar (no on_click, so nothing visibly happened) + # before the touch search could reach mode_toggle underneath — same z-order class of + # bug as the bg_opa fix above, but for touch capture instead of rendering. + clickable: false widgets: - arc: id: dial_bg_arc @@ -277,6 +284,7 @@ lvgl: outline_width: 0 scrollable: false bg_opa: transp + clickable: false # see temp_view comment above — same touch-capture fix layout: type: flex flex_flow: column