From 84a80f6ddf1f2ca71f4e0b9c66b77a60f8da0794 Mon Sep 17 00:00:00 2001 From: "EverLEEst(SangHyeon Jade Lee)" Date: Mon, 29 Mar 2021 21:07:42 +0900 Subject: [PATCH] [NUI] update scollbar : fix build error. --- 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 a6cc1e7..de3579c 100755 --- a/src/Tizen.NUI.Components/Controls/Scrollbar.cs +++ b/src/Tizen.NUI.Components/Controls/Scrollbar.cs @@ -530,7 +530,7 @@ namespace Tizen.NUI.Components private void UpdateThumbColor(Color color) { thumbColor = color; - if (thumbView.ResourceUrl != string.IsNullOrEmpty) + if (String.IsNullOrEmpty(thumbView.ResourceUrl)) { thumbView.Color = color; thumbView.BackgroundColor = Color.Transparent; -- 2.7.4