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

indev: fix lv_indev_enable

This commit is contained in:
Gabor Kiss-Vamosi 2019-08-26 09:05:30 +02:00 committed by GitHub
parent a5d89e6ece
commit 3eb06252e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -182,7 +182,7 @@ void lv_indev_enable(lv_indev_t * indev, bool en)
{
if(!indev) return;
indev->proc.disabled = en ? 1 : 0;
indev->proc.disabled = en ? 0 : 1;
}
/**