diff -r d2068517fbdd -r 22dc0b739dd8 ui/common/types.c --- a/ui/common/types.c Sun Feb 11 12:29:30 2024 +0100 +++ b/ui/common/types.c Sun Feb 11 13:59:40 2024 +0100 @@ -150,6 +150,10 @@ cxListInsert(list->data, 0, data); } +void ui_list_remove(UiList *list, int i) { + cxListRemove(list->data, i); +} + void ui_list_clear(UiList *list) { cxListClear(list->data); }