This commit is contained in:
Gabor Kiss-Vamosi
2017-10-30 17:11:56 +01:00
parent f0080b944d
commit 5608bf868e
14 changed files with 174 additions and 84 deletions

View File

@@ -1535,8 +1535,9 @@ static void lv_style_refr_core(void * style_p, lv_obj_t * obj)
{
lv_obj_t * i;
LL_READ(obj->child_ll, i) {
if(i->style_p == style_p || style_p == NULL) {
if(i->style_p == style_p) {
refresh_childen_style(i);
lv_obj_refresh_style(i);
}
lv_style_refr_core(style_p, i);