summaryrefslogtreecommitdiff
path: root/lib/lvgl/src
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lvgl/src')
-rw-r--r--lib/lvgl/src/widgets/list/lv_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lvgl/src/widgets/list/lv_list.c b/lib/lvgl/src/widgets/list/lv_list.c
index 5288c66e..5c639303 100644
--- a/lib/lvgl/src/widgets/list/lv_list.c
+++ b/lib/lvgl/src/widgets/list/lv_list.c
@@ -98,7 +98,7 @@ lv_obj_t * lv_list_add_button(lv_obj_t * list, const void * icon, const char * t
if(txt) {
lv_obj_t * label = lv_label_create(obj);
lv_label_set_text(label, txt);
- lv_label_set_long_mode(label, LV_LABEL_LONG_SCROLL_CIRCULAR);
+ lv_label_set_long_mode(label, LV_LABEL_LONG_CLIP);
lv_obj_set_flex_grow(label, 1);
}