From a81dbd338c3c2e4039f853f4642f9faa97714729 Mon Sep 17 00:00:00 2001 From: Ruben Brandhofer <49652474+RubBra@users.noreply.github.com> Date: Sun, 28 Aug 2022 19:23:29 +0200 Subject: [PATCH] fix: remove tabview content not click focusable causes bugs in widgets reacting to focus changes(#3633) fixes #3614 Co-authored-by: Ruben Vincent Brandhofer --- src/widgets/tabview/lv_tabview.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/widgets/tabview/lv_tabview.c b/src/widgets/tabview/lv_tabview.c index e7b210e4d..d449a3098 100644 --- a/src/widgets/tabview/lv_tabview.c +++ b/src/widgets/tabview/lv_tabview.c @@ -72,7 +72,6 @@ lv_obj_t * lv_tabview_add_tab(lv_obj_t * obj, const char * name) lv_obj_t * page = lv_obj_create(cont); lv_obj_set_size(page, LV_PCT(100), LV_PCT(100)); - lv_obj_clear_flag(page, LV_OBJ_FLAG_CLICK_FOCUSABLE); uint32_t tab_id = lv_obj_get_child_cnt(cont); lv_obj_t * btns = lv_tabview_get_tab_btns(obj);