1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

Merge branch 'master' into dev-5.3

This commit is contained in:
Gabor Kiss-Vamosi 2018-11-22 11:47:56 +01:00
commit e04a3e7fce

View File

@ -110,6 +110,8 @@ bool lv_indev_read(lv_indev_t * indev, lv_indev_data_t * data)
bool cont = false;
if(indev->driver.read) {
memset(data, 0, sizeof(data));
data->state = LV_INDEV_STATE_REL;
data->user_data = indev->driver.user_data;
LV_LOG_TRACE("idnev read started");