Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(gesture): fix typo lv_indev_act() -> lv_indev_get_act() #3291

Merged
merged 1 commit into from
Apr 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs(gesture): fix typo lv_indev_act() -> lv_indev_get_act()
  • Loading branch information
pengyiqiang committed Apr 23, 2022
commit 8e1aa20975cb41c47bc32242a45fbb36852fc914
2 changes: 1 addition & 1 deletion docs/overview/indev.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ To prevent passing the gesture event to the parent from an object use `lv_obj_cl

Note that, gestures are not triggered if an object is being scrolled.

If you did some action on a gesture you can call `lv_indev_wait_release(lv_indev_act())` in the event handler to prevent LVGL sending further input device related events.
If you did some action on a gesture you can call `lv_indev_wait_release(lv_indev_get_act())` in the event handler to prevent LVGL sending further input device related events.

## Keypad and encoder

Expand Down