From a624019943b4a2a877a419d2ba10d16270296c5b Mon Sep 17 00:00:00 2001 From: Ali Rostami <9710249+ali-rostami@users.noreply.github.com> Date: Sat, 16 Mar 2019 09:03:50 +0330 Subject: [PATCH] changed LL_READ_BACK call to LV_LL_READ_BACK as we don't have `LL_READ_BACK` function anymore. I changed it to `LV_LL_READ_BACK`. --- lv_objx/lv_chart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index 896a7cf55..3adeaffda 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -848,7 +848,7 @@ static void lv_chart_draw_areas(lv_obj_t * chart, const lv_area_t * mask) style.line.width = ext->series.width; /*Go through all data lines*/ - LL_READ_BACK(ext->series_ll, ser) { + LV_LL_READ_BACK(ext->series_ll, ser) { style.line.color = ser->color; p1.x = 0 + x_ofs;