Closed symfund closed 1 year ago
If you are using LVGL v8.3 you should enable disp_drv->screen_transp
and LV_COLOR_SCREEN_TRANSP
.
In LVGL master
only disp_drv->screen_transp
needs to be enabled.
@kisvegabor In my fork v8.2, displ_drv->screen_transp and LV_COLOR_SCREEN_TRANSP already are enabled, I will try on v8.3.
I fixed the problem!
void lv_disp_drv_init(lv_disp_drv_t * driver) { ...
driver->screen_transp = 1;
driver->screen_transp = 0;
...
}
Below is the original background of Sticky Notes
The shadow of border is wrong using the latest source repository.
void lv_example_sticky_notes(void) { LV_IMG_DECLARE(img_sticky_notes_png);
}