Description
Is there a functionality where after removing an object from a group, when re-adding the object it is added within relation to another object?
Example:
(Assuming default group)
Current Behavior:
- Original Group order:
Obj_A → Obj_B → Obj_C → Obj_D - Remove Obj_B from group:
lv_group_remove_obj(Obj_B); - Re-add Obj_B to group:
lv_group_add_obj(lv_group_get_default, Obj_B); - New group order
Obj_A ->Obj_C → Obj_D → Obj_B
Desired/Future Behavior:
- Original Group order:
Obj_A → Obj_B → Obj_C → Obj_D - Remove Obj_B from group:
lv_group_remove_obj(Obj_B); - Re-add Obj_B to group:
lv_group_add_obj(lv_group_get_default, Obj_B, Obj_A); - New group order
Obj_A → Obj_B → Obj_C → Obj_D
What LVGL version are you using?
v8.3.10
Do you think this is something that can be added? Currently, the only way I have been able to archive the proper order again is to re-add all obj within the group