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

lv_page: use lv_style_copy instead of memcpy

This commit is contained in:
Gabor Kiss-Vamosi 2019-04-11 15:41:17 +02:00
parent e6b7afccd2
commit a4d4d59346

View File

@ -624,7 +624,7 @@ static bool lv_page_design(lv_obj_t * page, const lv_area_t * mask, lv_design_mo
/*Cache page bg style for temporary modification*/
const lv_style_t * style = lv_page_get_style(page, LV_PAGE_STYLE_BG);
lv_style_t style_tmp;
memcpy(&style_tmp, style, sizeof(lv_style_t));
lv_style_copy(&style_tmp, style);
if(mode == LV_DESIGN_DRAW_MAIN) {
/*Draw without border*/