From 224bd55d50d22bc4f7e56204e6aa57c2e4156f2c Mon Sep 17 00:00:00 2001 From: Samuel Date: Thu, 8 Nov 2018 23:28:41 +0800 Subject: [PATCH] Update lv_roller.c --- lv_objx/lv_roller.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lv_objx/lv_roller.c b/lv_objx/lv_roller.c index 3bc354c724..6f28e6303a 100644 --- a/lv_objx/lv_roller.c +++ b/lv_objx/lv_roller.c @@ -74,8 +74,9 @@ lv_obj_t * lv_roller_create(lv_obj_t * par, const lv_obj_t * copy) lv_roller_ext_t * ext = lv_obj_allocate_ext_attr(new_roller, sizeof(lv_roller_ext_t)); lv_mem_assert(ext); if(ext == NULL) return NULL; - +#if LV_DDLIST_USE_STYLE_INDC != 0 ext->ddlist.roller_ddlist = 0; +#endif /*The signal and design functions are not copied so set them here*/ lv_obj_set_signal_func(new_roller, lv_roller_signal); lv_obj_set_design_func(new_roller, lv_roller_design);