From 88c9e6fe645e8108b23fb29d10d5dab9952a431c Mon Sep 17 00:00:00 2001 From: Joogab Yun Date: Tue, 13 Jul 2021 12:14:40 +0900 Subject: [PATCH] Revert "[NUI] Change shouldIntercept value" This reverts commit 6d9b8daa4f1a466afa41cb8fb8cf7ede3990b9ec. --- src/Tizen.NUI.Components/Controls/ScrollableBase.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs index e4acbaf24..3c894ba86 100755 --- a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs +++ b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs @@ -1344,7 +1344,7 @@ namespace Tizen.NUI.Components if (panGesture.State == Gesture.StateType.Started) { - shouldIntercept = true; + shouldIntercept = false; readyToNotice = false; AttachOverShootingShadowView(); Debug.WriteLineIf(LayoutDebugScrollableBase, "Gesture Start"); @@ -1357,6 +1357,7 @@ namespace Tizen.NUI.Components } else if (panGesture.State == Gesture.StateType.Continuing) { + shouldIntercept = true; if (ScrollingDirection == Direction.Horizontal) { // if vertical shadow is shown, does not scroll. -- 2.34.1