1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-02-04 07:13:00 +08:00

fix(flex): be sure obj->w_layout and h_layout can't be set at the same time

realted to https://forum.lvgl.io/t/flex-grow-in-rotate/10220/4
This commit is contained in:
Gabor Kiss-Vamosi 2022-11-17 21:28:30 +01:00
parent 6825d4bd1d
commit c4c400716e

View File

@ -470,8 +470,14 @@ static void children_repos(lv_obj_t * cont, flex_t * f, int32_t item_first_id, i
}
}
if(f->row) item->w_layout = 1;
else item->h_layout = 1;
if(f->row) {
item->w_layout = 1;
item->h_layout = 0;
}
else {
item->h_layout = 1;
item->w_layout = 0;
}
if(s != area_get_main_size(&item->coords)) {
lv_obj_invalidate(item);