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

lv_table: fix size (add 1 px)

This commit is contained in:
Gabor Kiss-Vamosi 2018-12-26 23:49:41 +01:00
parent 3e8e94d49c
commit 65cfdd1bf6

View File

@ -600,7 +600,7 @@ static void refr_size(lv_obj_t * table)
w += bg_style->body.padding.hor * 2;
h += bg_style->body.padding.ver * 2;
lv_obj_set_size(table, w, h);
lv_obj_set_size(table, w + 1, h + 1);
lv_obj_invalidate(table);
}