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

draw shadow fix (line_2d_blur was overindexed)

This commit is contained in:
Gabor Kiss-Vamosi 2018-07-18 23:46:41 +02:00
parent dc4541f267
commit d094d0262b

View File

@ -2023,7 +2023,7 @@ static void lv_draw_shadow_full_straight(const lv_area_t * coords, const lv_area
lv_opa_t opa_act;
int16_t d;
for(d = 1; d <= swidth; d++) {
for(d = 1; d < swidth; d++) {
opa_act = map[d];
fill_fp(&right_area, mask, style->body.shadow.color, opa_act);
right_area.x1++;