From 63c540cbbbf649161ce0f988766cc81f881ee223 Mon Sep 17 00:00:00 2001 From: aviralgarg05 Date: Thu, 23 Jul 2026 21:35:59 +0530 Subject: [PATCH] system/nxstore: Correct the scroll threshold comment. Keep the list behavior documentation consistent with the 20-pixel threshold used by the tested implementation. Assisted-by: OpenAI Codex:gpt-5.6-sol Signed-off-by: aviralgarg05 --- system/nxstore/nxstore_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/nxstore/nxstore_main.c b/system/nxstore/nxstore_main.c index 51a254722..1d4a22efb 100644 --- a/system/nxstore/nxstore_main.c +++ b/system/nxstore/nxstore_main.c @@ -1818,7 +1818,7 @@ static void build_app_store_ui(FAR const char *repo_url) * screen - it was previously locked down entirely (matching scr * above) because a noisy touch driver could turn a tap into an * accidental scroll drag. That protection actually lives at the - * indev level (lv_indev_set_scroll_limit(255)/scroll_throw(0) in + * indev level (lv_indev_set_scroll_limit(20)/scroll_throw(0) in * main() - a real drag has to travel much further than any touch * jitter before a scroll starts at all), so it's safe to leave this * SCROLLABLE and still get that protection; only vertical dragging is