Fixed a bug : remove alpha value in color API
authorGeunsun, Lee <gs86.lee@samsung.com>
Wed, 24 May 2017 05:30:37 +0000 (14:30 +0900)
committerGeunsun, Lee <gs86.lee@samsung.com>
Wed, 24 May 2017 05:30:37 +0000 (14:30 +0900)
Change-Id: I0c1c2f70df4f7cd1c95d69fe50c882b85147a189

TVMediaHub/TVMediaHub.Tizen/Utils/NinePatchImageRenderer.cs

index 762e0a8..a13ad2f 100755 (executable)
@@ -66,7 +66,7 @@ namespace TVMediaHub.Tizen.Utils
         private void UpdateImageColor()
         {
             var img = Element as NinePatch;
-            Control.Color = new ElmSharp.Color(Convert.ToInt32(img.ImageColor.R), Convert.ToInt32(img.ImageColor.G), Convert.ToInt32(img.ImageColor.B), Convert.ToInt32(img.ImageColor.A));
+            Control.Color = new ElmSharp.Color(Convert.ToInt32(img.ImageColor.R), Convert.ToInt32(img.ImageColor.G), Convert.ToInt32(img.ImageColor.B));
         }
 
         /// <summary>