1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

Update function calls with LV_IMG_ENABLE_SYMBOLS 1

This commit is contained in:
Gabor 2017-06-19 12:55:02 +02:00 committed by Kiss-Vamosi Gabor
parent e53dc381c5
commit 56f266749f
2 changed files with 2 additions and 2 deletions

View File

@ -325,7 +325,7 @@ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t
for(; cords_tmp.x1 < cords.x2; cords_tmp.x1 += ext->w, cords_tmp.x2 += ext->w) {
#if LV_IMG_ENABLE_SYMBOLS == 0
lv_draw_img(&cords_tmp, mask, style, opa, ext->fn);
lv_draw_img(&cords_tmp, mask, style, ext->fn);
#else
if(sym == false) lv_draw_img(&cords_tmp, mask, style, ext->fn);
else lv_draw_label(&cords_tmp, mask, style, ext->fn, TXT_FLAG_NONE, NULL);