[NUI] Fix typo in ScrollableBase
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Tue, 10 May 2022 07:58:23 +0000 (16:58 +0900)
committerSangHyeon Jade Lee <dltkdgus1764@gmail.com>
Tue, 10 May 2022 08:16:23 +0000 (17:16 +0900)
Fix typo ScreenPosition.Y to ScreenPosition.X in #4238.

src/Tizen.NUI.Components/Controls/ScrollableBase.cs

index d25ef97..02f60af 100755 (executable)
@@ -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