From: Seoyeon Kim Date: Wed, 4 Oct 2023 11:15:00 +0000 (+0900) Subject: [NUI] Fix the scroll issue on Accessibility X-Git-Tag: submit/tizen_6.0/20231004.113559~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12d4bef1f643d8ecc59266cb767507fb6a3e3743;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [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 --- diff --git a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs index 5e48ca137..1ebc012be 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)