1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

lv_group: fix lv_group_del not removing group from the group linked list

This commit is contained in:
Josh 2019-04-17 16:00:31 -07:00
parent 1ba23100f6
commit 84d79bcf56

View File

@ -110,6 +110,7 @@ void lv_group_del(lv_group_t * group)
}
lv_ll_clear(&(group->obj_ll));
lv_ll_rem(&LV_GC_ROOT(_lv_group_ll), group);
lv_mem_free(group);
}