From e3b43eec943db48f7cbee83e07e531d41bc61ac0 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Wed, 12 Jan 2022 17:38:34 +0100 Subject: [PATCH] docs(gesture): clarify gesture triggering with scrolling related to #2995 --- docs/overview/indev.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/overview/indev.md b/docs/overview/indev.md index 25585bc190..d66655fef8 100644 --- a/docs/overview/indev.md +++ b/docs/overview/indev.md @@ -64,6 +64,8 @@ lv_obj_add_event_cb(screen1, my_event, LV_EVENT_GESTURE, NULL); To prevent passing the gesture event to the parent from an obejct use `lv_obj_clear_flag(obj, LV_OBJ_FLAG_GESTURE_BUBBLE)`. +Note that, gestures are not triggered if an object is being scrolled. + ## Keypad and encoder You can fully control the user interface without a touchpad or mouse by using a keypad or encoder(s). It works similar to the *TAB* key on the PC to select an element in an application or a web page.