From c4decea1ab10e03341382148e1d958cef3c594f1 Mon Sep 17 00:00:00 2001 From: Mike Fikes Date: Mon, 9 Oct 2023 13:43:19 -0400 Subject: [PATCH] docs(obj): fix lv_obj_remove_style description: add -> remove (#4635) --- src/core/lv_obj_style.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/lv_obj_style.h b/src/core/lv_obj_style.h index d8475ae18..1aba04da7 100644 --- a/src/core/lv_obj_style.h +++ b/src/core/lv_obj_style.h @@ -98,7 +98,7 @@ bool lv_obj_replace_style(struct _lv_obj_t * obj, const lv_style_t * old_style, lv_style_selector_t selector); /** - * Add a style to an object. + * Remove a style from an object. * @param obj pointer to an object * @param style pointer to a style to remove. Can be NULL to check only the selector * @param selector OR-ed values of states and a part to remove only styles with matching selectors. LV_STATE_ANY and LV_PART_ANY can be used