From 12d4bef1f643d8ecc59266cb767507fb6a3e3743 Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Wed, 4 Oct 2023 20:15:00 +0900 Subject: [PATCH] [NUI] Fix the scroll issue on Accessibility - ScrollableBase in some apps is not working well in screen reader on mode. - Fix to propagate the scroll gesture event all the time. Signed-off-by: Seoyeon Kim --- src/Tizen.NUI.Components/Controls/ScrollableBase.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs index 5e48ca1..1ebc012 100755 --- a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs +++ b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs @@ -1385,12 +1385,13 @@ namespace Tizen.NUI.Components return false; } + bool handled = true; if (mScrollEnabled == true) { - OnPanGesture(gestures); + handled = OnPanGesture(gestures); } - return true; + return handled; } private float CustomScrollAlphaFunction(float progress) -- 2.7.4