[NUI] fix wrong condition on string null check
authorEverLEEst(SangHyeon Jade Lee) <sh10233.lee@samsung.com>
Tue, 6 Apr 2021 09:12:37 +0000 (18:12 +0900)
committerhuiyueun <35286162+huiyueun@users.noreply.github.com>
Tue, 20 Apr 2021 06:13:00 +0000 (15:13 +0900)
src/Tizen.NUI.Components/Controls/Scrollbar.cs

index de3579c..53c05aa 100755 (executable)
@@ -530,7 +530,7 @@ namespace Tizen.NUI.Components
         private void UpdateThumbColor(Color color)
         {
             thumbColor = color;
-            if (String.IsNullOrEmpty(thumbView.ResourceUrl))
+            if (!String.IsNullOrEmpty(thumbView.ResourceUrl))
             {
                 thumbView.Color = color;
                 thumbView.BackgroundColor = Color.Transparent;