diff --git a/src/lv_objx/lv_list.c b/src/lv_objx/lv_list.c index 6fedf950d2..c6e4300ca7 100644 --- a/src/lv_objx/lv_list.c +++ b/src/lv_objx/lv_list.c @@ -434,7 +434,7 @@ lv_obj_t * lv_list_get_btn_img(const lv_obj_t * btn) } /** - * Get the previous button from list. (Starts from the top button) + * Get the previous button from list. (Starts from the bottom button) * @param list pointer to a list object * @param prev_btn pointer to button. Search the previous before it. * @return pointer to the previous button or NULL when no more buttons @@ -459,7 +459,7 @@ lv_obj_t * lv_list_get_prev_btn(const lv_obj_t * list, lv_obj_t * prev_btn) } /** - * Get the next button from list. (Starts from the bottom button) + * Get the next button from list. (Starts from the top button) * @param list pointer to a list object * @param prev_btn pointer to button. Search the next after it. * @return pointer to the next button or NULL when no more buttons