refresh the top and sys layers if LV_VDB_SIZE = 0 too

This commit is contained in:
Gabor Kiss-Vamosi
2018-09-04 07:25:07 +02:00
parent aa83d9109b
commit 42722d0fd6

View File

@@ -270,6 +270,10 @@ static void lv_refr_area_no_vdb(const lv_area_t * area_p)
/*Do the refreshing*/
lv_refr_obj_and_children(top_p, area_p);
/*Also refresh top and sys layer unconditionally*/
lv_refr_obj_and_children(lv_layer_top(), &start_mask);
lv_refr_obj_and_children(lv_layer_sys(), &start_mask);
}
#else