From b8b66c6929bda8e19d4d4488326efd162ea72bfa Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Tue, 2 Mar 2021 12:23:31 +0100 Subject: [PATCH] Update lv_label.h --- src/lv_widgets/lv_label.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lv_widgets/lv_label.h b/src/lv_widgets/lv_label.h index c4e4a0236..df7336763 100644 --- a/src/lv_widgets/lv_label.h +++ b/src/lv_widgets/lv_label.h @@ -155,7 +155,7 @@ void lv_label_set_long_mode(lv_obj_t * label, lv_label_long_mode_t long_mode); /** * Set the align of the label (left or center) * @param label pointer to a label object - * @param align 'LV_LABEL_ALIGN_LEFT' or 'LV_LABEL_ALIGN_LEFT' + * @param align LV_LABEL_ALIGN_LEFT/RIGHT/CENTER */ void lv_label_set_align(lv_obj_t * label, lv_label_align_t align); @@ -207,7 +207,7 @@ lv_label_long_mode_t lv_label_get_long_mode(const lv_obj_t * label); /** * Get the align attribute * @param label pointer to a label object - * @return LV_LABEL_ALIGN_LEFT or LV_LABEL_ALIGN_CENTER + * @return LV_LABEL_ALIGN_LEFT/RIGHT/CENTER */ lv_label_align_t lv_label_get_align(const lv_obj_t * label);