1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-21 06:53:01 +08:00

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`.
This commit is contained in:
Ali Rostami 2019-03-16 09:03:50 +03:30 committed by GitHub
parent 22ad2e0ec1
commit a624019943
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;