[NUI] Fixed the type conversion issue which cause TCT failed (#1273)
authorzhouleonlei <56956725+zhouleonlei@users.noreply.github.com>
Mon, 6 Jan 2020 04:22:11 +0000 (12:22 +0800)
committerJiyun Yang <ji.yang@samsung.com>
Mon, 6 Jan 2020 04:22:11 +0000 (13:22 +0900)
src/Tizen.NUI.Components/Controls/Scrollbar.cs

index 62220ea..45d4080 100755 (executable)
@@ -110,7 +110,7 @@ namespace Tizen.NUI.Components
                 instance.Style.Duration = (uint)newValue;
                 if (instance.scrollAniPlayer != null)
                 {
-                    instance.scrollAniPlayer.Duration = (int)newValue;
+                    instance.scrollAniPlayer.Duration = (int)(uint)newValue;
                 }
             }
         },