From 4f338a73cc840d3f86bc6fff8f7596455f38c0bf Mon Sep 17 00:00:00 2001 From: "huayong.xu" Date: Tue, 20 Oct 2020 19:23:08 +0800 Subject: [PATCH] update some comments. --- src/Tizen.NUI.Components/Controls/ScrollableBase.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs index 50f177d..c274d9d 100755 --- a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs +++ b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs @@ -573,7 +573,7 @@ namespace Tizen.NUI.Components mInterruptTouchingChild.TouchEvent += OnIterruptTouchingChildTouched; Scrollbar = new Scrollbar(); - //Show vertical shadow when panning down (or up) on the scroll top (or end). + //Show vertical shadow on the top (or bottom) of the scrollable when panning down (or up). mVerticalTopShadowView = new View { BackgroundImage = StyleManager.GetFrameworkResourcePath("nui_component_default_scroll_over_shooting_top.png"), @@ -1058,7 +1058,6 @@ namespace Tizen.NUI.Components if (mVerticalShadowAnimation == null || mVerticalShadowAnimation.State != Animation.States.Playing) return; - Debug.WriteLineIf(LayoutDebugScrollableBase, "gesture finished. Stop Vertical Shadow Animation Playing."); mVerticalShadowAnimation.Stop(Animation.EndActions.Cancel); OnVerticalShadowAnimationFinished(null, null); mVerticalShadowAnimation.Clear(); -- 2.7.4