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:
parent
3e8e94d49c
commit
65cfdd1bf6
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user