Merge pull request #1584 from BesitzeRuf/dev

Fixes drawing of the image border
This commit is contained in:
Gabor Kiss-Vamosi
2020-06-16 13:10:36 +02:00
committed by GitHub

View File

@@ -528,8 +528,8 @@ void _lv_img_buf_get_transformed_area(lv_area_t * res, lv_coord_t w, lv_coord_t
LV_UNUSED(pivot); LV_UNUSED(pivot);
res->x1 = 0; res->x1 = 0;
res->y1 = 0; res->y1 = 0;
res->x2 = w; res->x2 = w - 1;
res->y2 = h; res->y2 = h - 1;
#endif #endif
} }