From: Jaehyun Cho Date: Tue, 10 May 2022 07:58:23 +0000 (+0900) Subject: [NUI] Fix typo in ScrollableBase X-Git-Tag: accepted/tizen/unified/20231205.024657~969 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5d4517021a3c11fa61d9c006d5f51eb0f928e000;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Fix typo in ScrollableBase Fix typo ScreenPosition.Y to ScreenPosition.X in #4238. --- diff --git a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs index d25ef97..02f60af 100755 --- a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs +++ b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs @@ -1870,7 +1870,7 @@ namespace Tizen.NUI.Components } else if (right > visibleRectangleRight) { - ScrollTo(right - Size.Width - ContentContainer.ScreenPosition.Y, true); + ScrollTo(right - Size.Width - ContentContainer.ScreenPosition.X, true); } } else