From 6fbbaf541c408413296211373cf06a755b396982 Mon Sep 17 00:00:00 2001 From: zhouleonlei <56956725+zhouleonlei@users.noreply.github.com> Date: Mon, 6 Jan 2020 12:22:11 +0800 Subject: [PATCH] [NUI] Fixed the type conversion issue which cause TCT failed (#1273) --- src/Tizen.NUI.Components/Controls/Scrollbar.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tizen.NUI.Components/Controls/Scrollbar.cs b/src/Tizen.NUI.Components/Controls/Scrollbar.cs index 62220ea..45d4080 100755 --- a/src/Tizen.NUI.Components/Controls/Scrollbar.cs +++ b/src/Tizen.NUI.Components/Controls/Scrollbar.cs @@ -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; } } }, -- 2.7.4