mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-30 15:17:33 +08:00
fix(event): use 16bit for lvgl event to avoid overlowing (#5102)
Signed-off-by: Xuxingliang <xuxingliang@xiaomi.com>
This commit is contained in:
+2
-2
@@ -109,9 +109,9 @@ typedef enum {
|
||||
|
||||
LV_EVENT_VSYNC,
|
||||
|
||||
_LV_EVENT_LAST, /** Number of default events*/
|
||||
_LV_EVENT_LAST, /** Number of default events*/
|
||||
|
||||
LV_EVENT_PREPROCESS = 0x80, /** This is a flag that can be set with an event so it's processed
|
||||
LV_EVENT_PREPROCESS = 0x8000, /** This is a flag that can be set with an event so it's processed
|
||||
before the class default event processing */
|
||||
} lv_event_code_t;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user