[NUI] Remove unnecessary opacity in CircularProgress (#1653)
authorSeoyeon2Kim <34738918+Seoyeon2Kim@users.noreply.github.com>
Fri, 5 Jun 2020 04:17:20 +0000 (13:17 +0900)
committerGitHub <noreply@github.com>
Fri, 5 Jun 2020 04:17:20 +0000 (13:17 +0900)
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
src/Tizen.NUI.Wearable/src/public/CircularProgress.cs

index faaf86b..10283fc 100755 (executable)
@@ -441,11 +441,7 @@ namespace Tizen.NUI.Wearable
 
         private void HandleProgressVisualVisibility()
         {
-            if (minValue == currentValue)
-            {
-                progressVisual.Opacity = 0.0f;
-            }
-            else if (isEnabled)
+            if (isEnabled)
             {
                 progressVisual.Opacity = 1.0f;
             }